摘要: 一、多进程 开启子进程的两种方式 方式一: from multiprocessing import Process import time def func(name): print('%s is going' % name) time.sleep(3) print('%s is done' % n 阅读全文
posted @ 2021-04-22 23:28 HolmesWu 阅读(73) 评论(0) 推荐(0) 编辑