立即登录

注册账号

联系我们

2021年12月22日 19:13

15. 迭代器与生成器

迭代器 iterator,给可迭代对象增加了next方法,依次索引对象 a = [1, 2, 3] # iterable a = iter(a) # iterator print(nex