python 默认主进程结束前,不会主动结束子进程
摘要:
1 # coding=utf8 2 import multiprocessing 3 import time 4 5 6 def process(name): 7 while True: 8 print('进程名:{}正在运行...'.format(name)) 9 time.sleep(0.2) 阅读全文
posted @ 2022-10-09 13:58 Shine-Zhong 阅读(145) 评论(0) 推荐(0) 编辑