Python多进程
摘要:
普通方式开启进程 from multiprocessing import Process import os import time def fun(i): time.sleep(3) with open('text','r') as f: count = int(f.read()) count - 阅读全文
posted @ 2019-07-16 16:16 信奉上帝的小和尚 阅读(162) 评论(0) 推荐(0) 编辑