20 lines
362 B
Python
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))
|
|
|