2018年9月22日土曜日

Pythonでprint出力をテキストファイルに保存したい

import sys
old_stdout = sys.stdout # 保存しておく
sys.stdout = open('stdout.txt', 'w')
print("This will be save as a txet file.")
sys.stdout = old_stdout # 保存したものを戻す

0 件のコメント:

コメントを投稿