【1.65】进度条 sys 模块 sys.stdout.write sys.stdout.flush()
import sys
import time
for i in range(10):
sys.stdout.write("#")
time.sleep(i*0.2)
sys.stdout.flush()
import sys
import time
for i in range(10):
sys.stdout.write("#")
time.sleep(i*0.2)
sys.stdout.flush()