python生成器并行

import time
def consumer(name):
    print("%s 吃包子啦!" %name)
    while True:
       baozi = yield
       print("包子[%s]来了,被[%s]吃了!" %(baozi,name))
#c = consumer("Sooele")
#c.__next__()
# b1= "猪肉馅"
# c.send(b1)
# c.__next__()
def producer(name):
    c = consumer('A')
    c2 = consumer('B')
    c.__next__()
    c2.__next__()
    print("开始准备做包子啦!")
    for i in range(10):
        time.sleep(1)
        print("做了1个包子,分两半!")
        c.send(i)
        c2.send(i)
producer("sooele")