Python 3 - 文件 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