Advertisement
calfred2808

#Python ProgressBar

Jul 21st, 2020
1,030
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.09 KB | None | 0 0
  1. from tqdm import tqdm
  2.  
  3. from time import sleep
  4.  
  5. for i in tqdm(range(100)):
  6.     sleep(0.1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement