Skip to content

Instantly share code, notes, and snippets.

@xingkaixin
Created September 15, 2014 14:46
Show Gist options
  • Save xingkaixin/9648107ffb6e3cab582c to your computer and use it in GitHub Desktop.
Save xingkaixin/9648107ffb6e3cab582c to your computer and use it in GitHub Desktop.
tdqmdemo.py
import time
from tqdm import *
aa = []
for x in range(1000):
aa.append("a" + str(x))
for i in tqdm(aa):
time.sleep(.01)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment