Closed
Description
Here's the codes:
from time import sleep
from tqdm import tqdm
for i in tqdm(range(100)):
for j in tqdm(range(10), leave=False):
sleep(0.1)
When running in the terminal, it shows correctly. It returns two progress bars, one for thei
and one for the j
in the loop.
However, when running in the jupyter notebook or Interactive Window, only the outermost i
loop is displayed, and the progress bar of the j
loop contained therein is not displayed.