Here is my goal: To make a small program (text based) that will start with a greeting, print out a timer for how long it has been since the last event, and then a timer for the
import time
s=0
m=0
while True:
print(m, 'minutes,', s, 'seconds')
time.sleep(0.999999999999999999999) # the more 9s the better
s += 1
if s == 60:
s=0
m += 1