This is my Code:
seconds = 0
minuts = 0
while seconds > -1:
rounded = round(seconds,2)
print(minuts, 'minutes,', rounded, 'seconds')
seconds += 0.01
time.sleep(0.01)
if rounded == 59:
s=0
minuts+= 1
I want to press some key to stop the timer.