Python教程

《Python Cookbook v3.0.0》Chapter4 迭代器、生成器

本文主要是介绍《Python Cookbook v3.0.0》Chapter4 迭代器、生成器,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

感谢:
https://github.com/yidao620c/python3-cookbook
如有侵权,请联系我整改。

本文章节会严格按照原书(以便和原书对照,章节标题可能会略有修改),内容会有增删。

4.1 手动遍历迭代器

>>> items
[1, 2, 3]
>>> it=iter(items)
>>> it
<list_iterator object at 0x0000024B94D25408>
>>> next(it)
1
>>> next(it)
2
>>> next(it)
3
>>> next(it)
Traceback (most recent call last):
  File "<input>", line 1, in <module>
StopIteration
>>> it=iter(items)
>>> next(it)
1
>>> print(*it)
2 3
>>> print(*it)
这篇关于《Python Cookbook v3.0.0》Chapter4 迭代器、生成器的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!