Python 进程与多线程
Posted smartwen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 进程与多线程相关的知识,希望对你有一定的参考价值。
10 进程和多线程
10.1 多进程
# -*- coding: utf-8 -*-
import os
pid=os.fork()
print (‘process (%s)start ...‘ %os.getpid())
if pid==0:
print(‘I am child process (%s) and my parent is %s.‘ % (os.getpid(), os.getppid()))
else:
print(‘I (%s) just created a child process (%s).‘ % (os.getpid(), pid))
以上是关于Python 进程与多线程的主要内容,如果未能解决你的问题,请参考以下文章