Skip to content

Instantly share code, notes, and snippets.

@ChaitanyaBaweja
Created March 14, 2020 10:02
Show Gist options
  • Save ChaitanyaBaweja/96382fe2d19b505aa575592741d6f09e to your computer and use it in GitHub Desktop.
Save ChaitanyaBaweja/96382fe2d19b505aa575592741d6f09e to your computer and use it in GitHub Desktop.
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