Created
March 14, 2020 10:02
-
-
Save ChaitanyaBaweja/96382fe2d19b505aa575592741d6f09e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from tqdm import trange | |
from time import sleep | |
for i in trange(4, desc='1st loop'): | |
for j in trange(5, desc='2nd loop'): | |
for k in trange(50, desc='3rd loop', leave=False): | |
sleep(0.01) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment