Python 刷新输出
2018-09-13 本文已影响16人
万有引力万有
# coding:utf-8
import sys
import time
for item in range(100):
sys.stdout.write('\r' + str(item) + '\033[K')
sys.stdout.flush()
time.sleep(0.1)
# coding:utf-8
import sys
import time
for item in range(100):
sys.stdout.write('\r' + str(item) + '\033[K')
sys.stdout.flush()
time.sleep(0.1)