Python File seek() 方法
python file seek() 方法
seek() 方法用于移動(dòng)文件讀取指針到指定位置。
語法
seek() 方法語法如下:
fileobject.seek(offset[, whence])
參數(shù)
-
offset -- 開始的偏移量,也就是代表需要移動(dòng)偏移的字節(jié)數(shù)
whence:可選,默認(rèn)值為 0。給offset參數(shù)一個(gè)定義,表示要從哪個(gè)位置開始偏移;0代表從文件開頭開始算起,1代表從當(dāng)前位置開始算起,2代表從文件末尾算起。
返回值
如果操作成功,則返回新的文件位置,如果操作失敗,則函數(shù)返回 -1。
實(shí)例
以下實(shí)例演示了 readline() 方法的使用:
文件 codebaoku.txt 的內(nèi)容如下:
1: 2: 3: 4: 5:
循環(huán)讀取文件的內(nèi)容:
實(shí)例
#!/usr/bin/python # -*- coding: utf-8 -*- # 打開文件 fo = open("codebaoku.txt", "rw+") print "文件名為: ", fo.name line = fo.readline() print "讀取的數(shù)據(jù)為: %s" % (line) # 重新設(shè)置文件讀取指針到開頭 fo.seek(0, 0) line = fo.readline() print "讀取的數(shù)據(jù)為: %s" % (line) # 關(guān)閉文件 fo.close()以上實(shí)例輸出結(jié)果為:
文件名為: codebaoku.txt 讀取的數(shù)據(jù)為: 1: 讀取的數(shù)據(jù)為: 1:
相關(guān)文章
- Python 中文編碼
- Python 變量類型
- Python continue 語句
- Python 元組
- Python JSON
- Python 二維數(shù)組
- Python 二叉樹
- Python 搜索樹
- Python 算法設(shè)計(jì)
- Python 回溯
- Python 圖算法
- Python3 環(huán)境搭建
- Python3 數(shù)據(jù)類型
- Python3 運(yùn)算符
- Python3 集合(Set)
- Python3 錯(cuò)誤和異常
- Python3 命名空間
- Python3 正則表達(dá)式
- Python3 JSON 解析
- Python MongoDB 數(shù)據(jù)庫連接 - PyMongo 驅(qū)動(dòng)