how to make a setablle timer in python code example
Example 1: how to make a minute counter in python
counter = 1
print(counter)
import time
while True:
time.sleep(60)
counter += 1
print(counter)
#this adds one to the counter every 60 seconds
Example 2: py countdown
# import the time module
import time
# define the countdown func.
def countdown(t):
while t:
mins, secs = divmod(t, 60)
timer = '{:02d}:{:02d}'.format(mins, secs)
print(timer, end="\r")
time.sleep(1)
t -= 1
print('Fire in the hole!!')
# put time in seconds here
t = 10
# function call
countdown(int(t))