方式1:
import sys sys.stdout.write(' ' + '你的输出详情') sys.stdout.flush()
方式2:
print(' ' + '你的输出详情', end='', flush=True)
实例:
import sys import time for i in range(101): # 方式1 sys.stdout.write(' ' + str(i)) sys.stdout.flush() # 方式2 print(' ' + str(i), end='', flush=True) time.sleep(0.3)