我在使用 tqdm.write() 回车时遇到问题
这段代码完美运行,它制作了一个旋转条的动画
step = 0
for x in range (0,50):
animation = {0: '|',
1: '/',
2: '-',
3: '\\'
}[step]
tqdm.write(animation, end='\r')
step = (step+1) % 4
time.sleep(0.1)
但是如果我在之前创建进度条:
bar = tqdm(total=100) # Here
step = 0
for x in range (0,50):
animation = {0: '|',
1: '/',
2: '-',
3: '\\'
}[step]
tqdm.write(animation, end='\r')
step = (step+1) % 4
time.sleep(0.1)
我只有一个进度条的显示。
有任何想法吗 ?