0
我需要寫一個函數可以多次重複其他函數。我正在使用threading.Timer
,但它無法工作。python threading.timer沒有重複功能
這裏ismy代碼:
import threading
def plus(a,b):
print (a+b)
def repeat(func,interval,*args):
threading.Timer(interval, func, args = args).start()
repeat(plus,1,2,3)
我看了[docs](https://docs.python.org/3/library/threading.html#timer-objects),我沒有看到它應該重複的地方。在所有可能的情況下,你需要在線程函數中設置一個新的定時器。 –