Python File next() 方法
python file next() 方法
next() 方法在文件使用迭代器時(shí)會(huì)使用到,在循環(huán)中,next()方法會(huì)在每次循環(huán)中調(diào)用,該方法返回文件的下一行,如果到達(dá)結(jié)尾(eof),則觸發(fā) stopiteration
語(yǔ)法
next() 方法語(yǔ)法如下:
fileobject.next();
參數(shù)
- 無(wú)
返回值
返回文件下一行。
實(shí)例
以下實(shí)例演示了 next() 方法的使用:
文件 codebaoku.txt 的內(nèi)容如下:
這是第一行 這是第二行 這是第三行 這是第四行 這是第五行
循環(huán)讀取文件的內(nèi)容:
#!/usr/bin/python # -*- coding: utf-8 -*- # 打開(kāi)文件 fo = open("codebaoku.txt", "r+") print "文件名為: ", fo.name for index in range(5): line = fo.next() print "第 %d 行 - %s" % (index, line) # 關(guān)閉文件 fo.close()
以上實(shí)例輸出結(jié)果為:
文件名為: codebaoku.txt 第 0 行 - 這是第一行 第 1 行 - 這是第二行 第 2 行 - 這是第三行 第 3 行 - 這是第四行 第 4 行 - 這是第五行
相關(guān)文章
- Python 循環(huán)語(yǔ)句
- Python while 循環(huán)語(yǔ)句
- Python continue 語(yǔ)句
- Python 文件I/O
- Python 網(wǎng)絡(luò)編程
- Python JSON
- Python 詞典
- Python 集合
- Python 節(jié)點(diǎn)
- Python Deque
- Python 遞歸
- Python 排序算法
- Python 攤銷(xiāo)分析
- Python3 環(huán)境搭建
- Python3 數(shù)據(jù)類型
- Python3 解釋器
- Python3 迭代器
- Python3 JSON 解析
- Python3 內(nèi)置函數(shù)
- Python MongoDB 數(shù)據(jù)庫(kù)連接 - PyMongo 驅(qū)動(dòng)