python同时执行两个函数

我现在自定义了两个函数

def test():

while True:
    ...
    ...

def test1():

while True:
    ...
    ...

这两个函数都是一个无限循环的两个函数,我现在想让这两个函数在同一个PY文件中去同时执行,不知道大佬们有什么好的解决方法呢。新手求教。

阅读 18.1k
1 个回答

多线程 threading

import threading

threading.Thread(target= test).start()
threading.Thread(target=test1).start()
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题