摘要: def repeater(value): while True: new = yield value print(first, new) if new is not None: value = new print('second', value) 1.调用函数,并且使用next()方法 >>>r... 阅读全文
posted @ 2016-06-04 17:26 shawshanks 阅读(262) 评论(0) 推荐(0) 编辑