python 多进程,多线程简单的

python 多进程,多线程简单的

 

复制代码
# -*- coding:utf-8 -*-
from time import ctime,sleep
import threading #线程
import multiprocessing #多进程

def talk(c,loop):
    for i in range(loop):
        print(" %s talk hello 51 zxw! %s" %(c,ctime()))
        sleep(3)
        
def write(c,loop):
    for i in range(loop):
        print(" %s wite hello 51 zxw! %s" %(c,ctime()))
        sleep(5)

threads = []
# t1 = threading.Thread(target=talk,args=("t1",2)) #多线程用这个
t1 = multiprocessing.Process(target=talk,args=("t1",2)) #多进程用这个
threads.append(t1)

# t2 = threading.Thread(target=write,args=("t1",2))
t2 = multiprocessing.Process(target=write,args=("t1",2))
threads.append(t2)

if __name__ == "__main__":
    for t in threads:
        t.start()
    for t in threads:
        t.join()
    print("all the end %s" %ctime())
复制代码

 

posted @   测试艺术家  阅读(44)  评论(0编辑  收藏  举报
编辑推荐:
· 智能桌面机器人:用.NET IoT库控制舵机并多方法播放表情
· Linux glibc自带哈希表的用例及性能测试
· 深入理解 Mybatis 分库分表执行原理
· 如何打造一个高并发系统?
· .NET Core GC压缩(compact_phase)底层原理浅谈
阅读排行:
· 手把手教你在本地部署DeepSeek R1,搭建web-ui ,建议收藏!
· 新年开篇:在本地部署DeepSeek大模型实现联网增强的AI应用
· Janus Pro:DeepSeek 开源革新,多模态 AI 的未来
· 互联网不景气了那就玩玩嵌入式吧,用纯.NET开发并制作一个智能桌面机器人(三):用.NET IoT库
· 【非技术】说说2024年我都干了些啥
点击右上角即可分享
微信分享提示