Python生产者和消费者
Posted sisa
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python生产者和消费者相关的知识,希望对你有一定的参考价值。
# Author:XiangLiang
import threading,time
import queue
q = queue.Queue(maxsize=10)
def Producer(name):
count = 1
while True:
q.put("骨头 %s" %count)
print("生产了骨头",count)
count += 1
time.sleep(0.1)
def Consumer(name):
while True:
print("%s 取到 %s 并且吃了" %(name,q.get()))
time.sleep(1)
p = threading.Thread(target=Producer,args=("ZS",))
c = threading.Thread(target=Consumer,args=("XiaoHe",))
c1 = threading.Thread(target=Consumer,args=("HuZi",))
p.start()
c.start()
c1.start()
以上是关于Python生产者和消费者的主要内容,如果未能解决你的问题,请参考以下文章