Python3 中的 File 对象不支持 next() 方法。 Python 3 有一个内置函数 next() ,它通过调用迭代器的 next() 方法从迭代器中检索下一个项目。如果给出默认值,则在迭代器耗尽时返回此默认值,否则引发 StopIteration。此方法可用于从文件对象中读取下一个输入行。
语法
以下是next()方法的语法 -
next(iterator[,default])
参数
iterator − 从默认值读取行的文件对象 − 如果迭代器耗尽则返回此默认值。如果未给出此默认值,则会抛出 StopIteration 异常
返回值
此方法返回下一个输入行
英文文档:
next(iterator[, default])
Retrieve the next item from the iterator by calling its __next__() method. If default is given, it is returned if the
iterator is exhausted, otherwise StopIteration is raised.
说明:
1. 函数必须接收一个可迭代对象参数,每次调用返回可迭代对象的下一个元素。如果已返回所有元素,则抛出 StopIteration 异常。
>>> a = iter('abcd')
>>> next(a)
'a'
>>> next(a)
'b'
>>> next(a)
'c'
>>> next(a)
'd'
>>> next(a)
Traceback (most recent call last):
File "<pyshell#18>", line 1, in <module>
next(a)
StopIteration
2. 该函数可以接收一个可选的默认参数。传入默认参数后,如果可迭代对象还有元素没有返回,则依次返回其元素值。如果所有元素都已返回,则返回默认指定的默认值,而不是抛出 StopIteration 异常。
>>> a = iter('abcd')
>>> next(a,'e')
'a'
>>> next(a,'e')
'b'
>>> next(a,'e')
'c'
>>> next(a,'e')
'd'
>>> next(a,'e')
'e'
>>> next(a,'e')
'e'
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ python有短类型吗?10/09
- ♥ python内置函数在哪里11/05
- ♥ python是什么意思?10/13
- ♥ python控制台是什么意思09/20
- ♥ python编程看什么教材好12/28
- ♥ python center()如何填充一个字符串11/25
内容反馈