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

progress bar update in the same line of a jupyter notebook

我喜欢 tqdm progress bar 的简单性。然而,我注意到在某些情况下,进度条的每次更新都打印在 jupyter notebook 的新行中,如下面的屏幕截图所示:

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

?

tqdm 有一个特定的模块用于处理 jupyter notebook 中的输出,tqdm_notebook:

import time
from tqdm import tqdm_notebook as tqdm

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