Skip to content

Instantly share code, notes, and snippets.

@amirmasoud
Created November 28, 2018 18:17
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 amirmasoud/124e91ab704271b4ddc202549e73bfb8 to your computer and use it in GitHub Desktop.
Save amirmasoud/124e91ab704271b4ddc202549e73bfb8 to your computer and use it in GitHub Desktop.
Progress bar in Python
import time
from tqdm import tqdm
for i in tqdm(range(10)):
time.sleep(1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment