gpt4 book ai didi

在Python中使用next()方法操作文件的教程

转载 作者:qq735679552 更新时间:2022-09-29 22:32:09 25 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章在Python中使用next()方法操作文件的教程由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

 next()方法当一个文件被用作迭代器,典型例子是在一个循环中被使用,next()方法被反复调用。此方法返回下一个输入行,或引发StopIteration异常EOF时被命中.

与其它文件的方法,如ReadLine()相结合next()方法工作不正常。然而,usingseek()将文件重新定位到一个绝对位置将刷新预读缓冲器。 语法 。

以下是next()方法的语法:

?
1
fileObject. next ();

参数 。

  •     NA

返回值 。

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

下面的示例演示next()方法的使用.

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/python
 
# Open a file
fo = open ( "foo.txt" , "rw+" )
print "Name of the file: " , fo.name
 
# Assuming file has following 5 lines
# This is 1st line
# This is 2nd line
# This is 3rd line
# This is 4th line
# This is 5th line
 
for index in range ( 5 ):
   line = fo. next ()
   print "Line No %d - %s" % (index, line)
 
# Close opend file
fo.close()

当我们运行上面的程序,它会产生以下结果:

?
1
2
3
4
5
6
7
8
9
10
Name of the file : foo.txt
Line No 0 - This is 1st line
 
Line No 1 - This is 2nd line
 
Line No 2 - This is 3rd line
 
Line No 3 - This is 4th line
 
Line No 4 - This is 5th line

最后此篇关于在Python中使用next()方法操作文件的教程的文章就讲到这里了,如果你想了解更多关于在Python中使用next()方法操作文件的教程的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com