建立于: 4年前 ( 更新: 4年前 )
日志,如何使用thread运行功能
from threading import Thread
def test(*args):
#参数一
text = list(args)[0]
print(text)
#用Thread运行功能
thread = Thread(target=test, args=["testabc"])
thread.start()
No Comment
Post your comment