进度条更新在jupyter笔记本的同一行

时间:2018-06-07 07:25:42

标签: python jupyter-notebook tqdm

我喜欢简约的tqdm progress bar。我注意到有些情况,进度条的每次更新都打印在jupyter笔记本的新行中,如下面的屏幕截图所示:

tqdm progress update in newline

如何确保tupdm进度条的更新打印在jupyter笔记本中的同一行中,如下面的屏幕截图所示:

enter image description here

1 个答案:

答案 0 :(得分:0)

tqdm具有用于处理jupyter笔记本tqdm_notebook中的输出的特定模块:

import time
from tqdm import tqdm_notebook as tqdm

for i in tqdm(range(10)):
   time.sleep(1)