2021年4月29日
摘要: 使用yield实现协程效果 1 #!/usr/bin/env python 2 # -*-coding:utf-8 -*- 3 4 import time 5 def consumer(name): 6 print(name) 7 while True: 8 bone = yield #接收send 阅读全文
posted @ 2021-04-29 00:09 boye169 阅读(65) 评论(0) 推荐(0) 编辑