If I had the following code:
for x in range(10): print x
I would get the output of
1 2 etc..
What I
This works on Windows and python 3.6
import time for x in range(10): time.sleep(0.5) print(str(x)+'\r',end='')