当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python 3 File next()用法及代码示例



描述

Python 3 中的文件对象不支持next()方法。 Python 3 有一个 内置 函数 next(),它通过调用它的 __next__() 方法从迭代器中检索下一项。如果给出默认值,则在迭代器耗尽时返回,否则返回StopIteration被提出。此方法可用于从文件对象中读取下一个输入行

用法

以下是语法next()方法 -

next(iterator[,default])

参数

  • iterator- 要从中读取行的文件对象

  • default- 如果迭代器耗尽,则返回。如果未给出,则引发 StopIteration

返回值

此方法返回下一个输入行。

示例

下面的例子展示了 next() 方法的用法。

Assuming that 'foo.txt' contains following lines
C++
Java
Python
Perl
PHP
#!/usr/bin/python3

# Open a file
fo = open("foo.txt", "r")
print ("Name of the file:", fo.name)

for index in range(5):
   line = next(fo)
   print ("Line No %d - %s" % (index, line))

# Close opened file
fo.close()

结果

当我们运行上述程序时,它会产生以下结果 -

Name of the file: foo.txt
Line No 0 - C++

Line No 1 - Java

Line No 2 - Python

Line No 3 - Perl

Line No 4 - PHP

相关用法


注:本文由纯净天空筛选整理自 Python 3 - File next() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。