BSSZDS930

博客园 首页 新随笔 联系 订阅 管理

2020年5月27日 #

摘要: def foo(): print("starting...") while True: res = yield 4 print("res:",res) g = foo() print(next(g)) print("*"*20) print(next(g)) # 输出结果 starting... 4 阅读全文
posted @ 2020-05-27 19:53 BSSZDS930 阅读(228) 评论(0) 推荐(0) 编辑