Python File tell() 方法
python file tell() 方法
tell() 方法返回文件的當(dāng)前位置,即文件指針當(dāng)前位置。
語(yǔ)法
tell() 方法語(yǔ)法如下:
fileobject.tell()
參數(shù)
-
無(wú)
返回值
返回文件的當(dāng)前位置。
實(shí)例
以下實(shí)例演示了 tell() 方法的使用:
文件 codebaoku.txt 的內(nèi)容如下:
1:www.slktour.com 2:www.slktour.com 3:www.slktour.com 4:www.slktour.com 5:www.slktour.com
循環(huán)讀取文件的內(nèi)容:
#!/usr/bin/python # -*- coding: utf-8 -*- # 打開(kāi)文件 fo = open("codebaoku.txt", "rw+") print "文件名為: ", fo.name line = fo.readline() print "讀取的數(shù)據(jù)為: %s" % (line) # 獲取當(dāng)前文件位置 pos = fo.tell() print "當(dāng)前位置: %d" % (pos) # 關(guān)閉文件 fo.close()
以上實(shí)例輸出結(jié)果為:
文件名為: codebaoku.txt 讀取的數(shù)據(jù)為: 1:www.slktour.com 當(dāng)前位置: 20
相關(guān)文章
- Python 中文編碼
- Python 變量類型
- Python 運(yùn)算符
- Python break 語(yǔ)句
- Python 元組
- Python 函數(shù)
- Python 正則表達(dá)式
- Python IDE
- Python 哈希表
- Python 算法設(shè)計(jì)
- Python 遞歸
- Python 大O符號(hào)
- Python 算法類
- Python 攤銷分析
- Python3 環(huán)境搭建
- Python3 數(shù)字(Number)
- Python3 if else 語(yǔ)句
- Python3 命名空間
- Python3 日期和時(shí)間
- Python3 內(nèi)置函數(shù)