So, for example, I could have a stopwatch that seems to have the units changing rather than repeating underneath every time they change. I have heard of many ways to do this, like \r and sys, but these do not work on my windows python 3.6.5.(this code that doesn't work is shows below:
def clock():
import time
for i in range(60):
time.sleep(1)
print(i+1,end="\r seconds")