Ejemplo 1: cómo hacer un contador de minutos en 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
Ejemplo 2: cómo hacer un temporizador en Python
#Timer in python
#pip install playsound
import time
import playsound
question = int(input('How many seconds to wait: '))
time.sleep(question)
playsound.playsound('Hello.mp3')
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)