06 测试多进程的时间

Posted work14

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了06 测试多进程的时间相关的知识,希望对你有一定的参考价值。

import time
from multiprocessing import Process

def f1():
    time.sleep(2)
    print(‘子进程1号‘)

def f2():
    time.sleep(3)
    print(‘子进程2号‘)

if __name__ == ‘__main__‘:

    s = time.time()
    p = Process(target=f1,)
    p2 = Process(target=f2,)
    p.start()
    p2.start()
    p.join()
    p2.join()
    e = time.time()
    print(e - s)
    print(‘主进程结束‘)

  

以上是关于06 测试多进程的时间的主要内容,如果未能解决你的问题,请参考以下文章

代码片段:Shell脚本实现重复执行和多进程

线程学习知识点总结

多线程编程

python中的多线程和多进程编程

多线程编程

多个请求是多线程吗