我現在自訂了兩個函數
def test():
while True:
...
...
def test1():
while True:
...
...
這兩個函數都是一個無限迴圈的兩個函數,我現在想讓這兩個函數在同一個PY檔中去同時執行,不知道大佬們有什麼好的解法呢。新手求教。
为情所困2017-06-22 11:54:20
多執行緒 threading
import threading
threading.Thread(target= test).start()
threading.Thread(target=test1).start()