Created
March 26, 2015 00:31
-
-
Save whistler/f4b3c39eb2804c6c36fd to your computer and use it in GitHub Desktop.
Backspace Test
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(10): | |
print '\r', # print is Ok, and comma is needed. | |
time.sleep(0.3) | |
print i, | |
sys.stdout.flush() # flush is needed. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment