Created
July 14, 2014 16:25
-
-
Save imtapps/b16bb84c27a0ee49fcab to your computer and use it in GitHub Desktop.
Show the progress without scrolling
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
import time | |
for i in range(100): | |
sys.stderr.write('\r') | |
sys.stderr.write(str(i)) | |
time.sleep(.01) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment