摘要: def one(): print('one start') res = yield from two() print('function get res: ', res) return 'one' + res def two(): print('two start') res = yield fro 阅读全文
posted @ 2020-08-26 15:03 霍非 阅读(525) 评论(0) 推荐(0) 编辑