Apuntes_Python/04_seis_proyectos/04_CountdownTimer/main.py
2022-12-24 22:41:20 -03:00

20 lines
362 B
Python

"""
Temporizador
"""
import time
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('---------\n Es hora\n---------')
t = input('Introduce el tiempo (segundos): ')
print('El fin se acerca:')
countdown(int(t))