yield 实现的携程


import time
import queue


def consumer(name):
print("--->starting eating baozi...")
while True:
new_baozi = yield
print("[%s] is eating baozi %s" % (name, new_baozi))
# time.sleep(1)


def producer():
r = con.__next__()
r = con2.__next__()
n = 0
while n < 5:
n += 1
con.send(n)
con2.send(n)
time.sleep(1)
print("33[32;1m[producer]33[0m is making baozi %s" % n)


if __name__ == '__main__':
con = consumer("c1")
con2 = consumer("c2")
p = producer()
原文地址:https://www.cnblogs.com/rongye/p/9983147.html