join方法
摘要:
import time from multiprocessing import Process def f1(): time.sleep(2) print('xxxx') def f2(): time.sleep(2) print('ssss') # f1() # f2() if __name__ == '__main__': p1 = Proce... 阅读全文
posted @ 2019-01-08 15:19 =.=== 阅读(180) 评论(0) 推荐(0) 编辑