Skip to content

Instantly share code, notes, and snippets.

@kingabzpro
Last active August 15, 2022 14:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kingabzpro/597cf0a8a98550d02af253500854081a to your computer and use it in GitHub Desktop.
Save kingabzpro/597cf0a8a98550d02af253500854081a to your computer and use it in GitHub Desktop.
List tqdm exmaple
from tqdm.notebook import tqdm
colors = ["Blue","Green","Yellow","White","Gray","Black"]
for x in tqdm(colors):
sleep(1)
print(x)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment