Nuestro equipo redactor ha estado mucho tiempo buscando para darle espuestas a tus interrogantes, te compartimos la resolución por esto nuestro objetivo es resultarte de mucha apoyo.
Ejemplo 1: cómo ejecutar una función en intervalo en python
# this makes program sleep in intervalsfrom time import time, sleep
whileTrue:
sleep(1- time()%1)# run every 1 second... you can change that# thing to run
Ejemplo 2: cómo establecer el intervalo en python
# This runs test() function in intervals of 1 secondfrom threading import Timer
run =Truedeftest():global run
print("something")if run:
Timer(1, test).start()
test()# now whenever you set run to False the test function won't run anymore# and of course if you dont set it to False it will run forever
Te mostramos comentarios y valoraciones
Si te mola el tema, puedes dejar una sección acerca de qué le añadirías a este escrito.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)