“Cómo ejecutar una función en intervalo en Python” Código de respuesta

Cómo ejecutar una función en intervalo en Python

# This runs test() function in intervals of 1 second
from threading import Timer
run = True
def test():
	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
Jenova

Cómo ejecutar una función en intervalo en Python

# this makes program sleep in intervals
from time import time, sleep
while True:
    sleep(1 - time() % 1) # run every 1 second... you can change that
	# thing to run
Jenova

Respuestas similares a “Cómo ejecutar una función en intervalo en Python”

Preguntas similares a “Cómo ejecutar una función en intervalo en Python”

Más respuestas relacionadas con “Cómo ejecutar una función en intervalo en Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código