一、开启进程的两种方式方式一:# 方式一:使用函数开启进程from multiprocessing import Processimport timedef task(x):print(%s is running % x)time.sleep(1)print(%s is done % x)if __name__ == __main__:...
一、开启进程的两种方式
方式一:
# 方式一:使用函数开启进程 from multiprocessing import Process import time def task(x): print('%s is running' % x) time.sleep(1) print('%s is done' % x) if __name__ == '__main__': # p1 = Process(target=task, args=('子进程',)) #实例化子进程 p1 = Process(target=task, kwargs={'x': '子进程'}) p1.start() # 向操作系统申请资源(内存空间,子进程pid号),然后开始执行task任务,本动作不影响主进程,主进程则会继续执行。 print('这是主进程...')使用函数开启进程
方式二:
from multiprocessing import Process import time class MyProcess(Process): def __init__(self,x): super(MyProcess,self).__init__() self.x = x def run(self): print('%s is running'%self.x) time.sleep(1) print('%s is done'%self.x) if __name__ == '__main__': p1 = MyProcess('子进程') p1.start() print('这是主进程....')使用类的方式开启进程
二、
沃梦达教程
本文标题为:进程与子进程(python3入门)
基础教程推荐
猜你喜欢
- CentOS 7.5 安装 Python3.7 2023-09-03
- Python基础学习之函数和代码复用详解 2022-09-02
- python的环境conda简介 2022-10-20
- 基于Python实现股票数据分析的可视化 2023-08-04
- Centos7下安装python环境 2023-09-04
- centos系统 anaconda3(python3)安装pygrib 2023-09-04
- Python爬取当网书籍数据并数据可视化展示 2023-08-11
- 四步教你学会打包一个新的Python模块 2022-10-20
- Python 中 Elias Delta 编码详情 2023-08-08
- ubuntu 18 python3.6 的安装与 python2的版本切换 2023-09-03