首页 > 代码库 > python打印进度条

python打印进度条

import sys,time

for i in range(50):
sys.stdout.write("#")
time.sleep(0.1)
sys.stdout.flush()

python打印进度条