学习Python的很全的文档:http://www.runoob.com/python/python-object.html
Python 迭代器
方法
iter()建创一个迭代器
next()迭代一次 使用 next(iterator[, default])
iterator -- 可迭代对象
default -- 可选,用于设置在没有下一个元素时返回该默认值,如果不设置,又没有下一个元素则会触发 StopIteration 异常。
常用到的循环语句
学习Python的很全的文档:http://www.runoob.com/python/python-object.html
Python 迭代器
方法
iter()建创一个迭代器
next()迭代一次 使用 next(iterator[, default])
iterator -- 可迭代对象
default -- 可选,用于设置在没有下一个元素时返回该默认值,如果不设置,又没有下一个元素则会触发 StopIteration 异常。
常用到的循环语句
本文标题:python 笔记
本文链接:https://www.haomeiwen.com/subject/lwwkmftx.html
网友评论