Advertisement
Guest User

Untitled

a guest
Jun 12th, 2019
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.23 KB | None | 0 0
  1. >>> from tqdm import tqdm
  2. >>> from itertools import count
  3. >>> for _ in tqdm(count()): pass
  4. ...
  5.                                   ^CTraceback (most recent call last):
  6.   File "<stdin>", line 1, in <module>
  7. KeyboardInterrupt
  8. 8738
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement