tqdm进度表没有停留在一行

时间:2017-10-26 06:12:46

标签: python python-3.x tqdm

我刚刚在python3中尝试了一个简单的tqdm示例。它工作得很好但我的问题是"输出格式"。进度条看起来很奇怪:

enter image description here

我需要输出这样的输出

enter image description here

这是我的代码:

import time
from tqdm import tqdm
from time import sleep
for i in tqdm(range(10)):
    sleep(1.0)

0 个答案:

没有答案