python--多线程的应用
摘要:
python 多线程执行函数,以及调用函数时传参 import threading def func1(): print('this is function1') def func2(x,y): print('this is function2') print(x+y) threads = [] t 阅读全文
posted @ 2020-02-13 13:57 小陆同学 阅读(219) 评论(0) 推荐(0) 编辑