我碰到這個線程來到時,我一直在尋找一個解決方案,但它並不完全做我需要它:執行功能secods蟒每x數量
What is the best way to repeatedly execute a function every x seconds in Python?
這實際上「工程「(或者至少是第一個解決方案),但是它不允許你與腳本的其餘部分一起同時完成它。
基本上,我需要執行這樣的功能:
def functionName():
print "text"
我需要這個來執行每一個,比方說,100毫秒。但我需要這個while循環同時循環:
while True:
for event in pygame.event.get():
if event.type == QUIT:
pygame.quit()
sys.exit()
我該怎麼辦呢?
謝謝!
你看看[threading](http://docs.python.org/library/threading.html)嗎? – bereal 2012-03-27 17:29:30
可能的重複[在Python中每x秒重複執行一次函數的最佳方式是什麼?](http://stackoverflow.com/questions/474528/what-is-the-best-way-to-repeatedly-execute -a-function-every-x-seconds-in-python) – bernie 2012-03-27 17:30:29