python で出力ストリームを flush する方法のメモ
print() で flush=True を指定
print('Hello World!', flush=True)
sys.stdout.flush() を実行
print('Hello World!') sys.stdout.flush()
python で出力ストリームを flush する方法のメモ
print('Hello World!', flush=True)
print('Hello World!') sys.stdout.flush()