Skip to content

Instantly share code, notes, and snippets.

@mirrornerror
Created February 4, 2019 00:28
Show Gist options
  • Save mirrornerror/eca348bf5da0ad2bb78a0c20cec71b60 to your computer and use it in GitHub Desktop.
Save mirrornerror/eca348bf5da0ad2bb78a0c20cec71b60 to your computer and use it in GitHub Desktop.
from tqdm import tqdm_notebook as tqdm
pbar = tqdm(total=10)
for i in range(10):
pbar.update(1)
pbar.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment