我现在自定义了两个函数
def test():
while True: ... ...
def test1():
这两个函数都是一个无限循环的两个函数,我现在想让这两个函数在同一个PY文件中去同时执行,不知道大佬们有什么好的解决方法呢。新手求教。
温故而知新,可以为师矣。 博客:www.ouyangke.com
多线程 threading
import threading threading.Thread(target= test).start() threading.Thread(target=test1).start()
多线程 threading