2020年8月10日

python之进程

摘要: 一、最基本用法 import multiprocessing import time def worker(interval): n = 5 while n > 0: print("The time is {0}".format(time.ctime())) time.sleep(interval) 阅读全文

posted @ 2020-08-10 16:36 星星眨着眼 阅读(88) 评论(0) 推荐(0) 编辑

导航