“Como executar uma função em intervalo em python” Respostas de código

Como executar uma função em intervalo em 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

Como executar uma função em intervalo em 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

Respostas semelhantes a “Como executar uma função em intervalo em python”

Perguntas semelhantes a “Como executar uma função em intervalo em python”

Mais respostas relacionadas para “Como executar uma função em intervalo em python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código