Esta pregunta se puede solucionar de diferentes maneras, sin embargo te dejamos la que en nuestra opinión es la solución más completa.
Ejemplo 1: temporizador en Python
import time, os
seconds_to_go_for =10# How long the timer will go for
current_time =int(time.time())# Gets the time before the timer startsdefclear():if os.name =="nt":
os.system("cls")# Clear function, to avoid spam. Source: geeksforgeeks.orgelse:
os.system("clear")whileTrue:
time_now =int(time.time())# Gets time during the timer's runningif time_now >= current_time + seconds_to_go_for:# Checks if enough time has passedbreak# Stops loop if soprint(f"Seconds passed: time_now - current_time")# Prints how much time has passed
clear()print("The timer has ended")
Ejemplo 2: temporizador de Python ()
defhello():print"hello, world"
t = Timer(30.0, hello)
t.start()# after 30 seconds, "hello, world" will be printed
Ejemplo 3: cómo hacer un temporizador en Python
import time
import sys
time_start = time.time()
seconds =0
minutes =0whileTrue:try:
sys.stdout.write("rminutes Minutes seconds Seconds".format(minutes=minutes, seconds=seconds))
sys.stdout.flush()
time.sleep(1)
seconds =int(time.time()- time_start)- minutes *60if seconds >=60:
minutes +=1
seconds =0except KeyboardInterrupt, e:break
Ejemplo 4: temporizador de Python
import time
start = time.time()# do something
duration = time.time()- start
Ejemplo 5: temporizador de Python
import time
timer_length =float(input("How many seconds would you like you're timer to be set for? "))
time.sleep(timer_length)print("Done!")
Ejemplo 6: cómo hacer un temporizador en Python
#Timer in python#pip install playsoundimport time
import playsound
question =int(input('How many seconds to wait: '))
time.sleep(question)
playsound.playsound('Hello.mp3')
valoraciones y comentarios
Recuerda dar visibilidad a este ensayo si te ayudó.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)