Skip to content

Instantly share code, notes, and snippets.

@pralabhsaxena05
Created March 30, 2021 17:47
Show Gist options
  • Save pralabhsaxena05/3255424c210438cf9ee8f3088735447c to your computer and use it in GitHub Desktop.
Save pralabhsaxena05/3255424c210438cf9ee8f3088735447c to your computer and use it in GitHub Desktop.
from tqdm.notebook import trange, tqdm
from time import sleep
for i in tqdm(range(4), desc = "outer loop"):
for j in tqdm(range(10), desc = "inner loop"):
sleep(0.25)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment