首页 > 代码库 > python打印即时输出的方法

python打印即时输出的方法

>>> import sys
>>> sys.stdout.flush()

但是实验了,上面的报错,应该是不对的。

 

实验了,下面的报错,应该是不对的。

使用

print(‘Read file...‘, flush=True)

加上flush=True的参数

 

python打印即时输出的方法