Python File truncate() 方法
python file truncate() 方法
truncate() 方法用于截?cái)辔募?,如果指定了可選參數(shù) size,則表示截?cái)辔募?size 個(gè)字符。 如果沒(méi)有指定 size,則從當(dāng)前位置起截?cái)啵唤財(cái)嘀?size 后面的所有字符被刪除。
語(yǔ)法
truncate() 方法語(yǔ)法如下:
fileobject.truncate( [ size ])
參數(shù)
-
size -- 可選,如果存在則文件截?cái)酁?size 字節(jié)。
返回值
該方法沒(méi)有返回值。
實(shí)例
以下實(shí)例演示了 truncate() 方法的使用:
文件 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", "r+") print "文件名為: ", fo.name line = fo.readline() print "讀取第一行: %s" % (line) # 截?cái)嗍O碌淖址?fo.truncate() # 嘗試再次讀取數(shù)據(jù) line = fo.readline() print "讀取數(shù)據(jù): %s" % (line) # 關(guān)閉文件 fo.close()
以上實(shí)例輸出結(jié)果為:
文件名為: codebaoku.txt 讀取第一行: 1:www.slktour.com 讀取數(shù)據(jù):
以下實(shí)例截取 codebaoku.txt 文件的10個(gè)字節(jié):
#!/usr/bin/python # -*- coding: utf-8 -*- # 打開(kāi)文件 fo = open("codebaoku.txt", "r+") print "文件名為: ", fo.name # 截取10個(gè)字節(jié) fo.truncate(10) str = fo.read() print "讀取數(shù)據(jù): %s" % (str) # 關(guān)閉文件 fo.close()
以上實(shí)例輸出結(jié)果為:
文件名為: codebaoku.txt 讀取數(shù)據(jù): 1:www.code
相關(guān)文章
- Python 中文編碼
- Python 基礎(chǔ)語(yǔ)法
- Python 運(yùn)算符
- Python 元組
- Python 日期和時(shí)間
- Python CGI編程
- Python 網(wǎng)絡(luò)編程
- Python GUI編程 Tkinter
- Python 數(shù)組
- Python 鏈表
- Python 算法理由
- Python3 簡(jiǎn)介
- Python3 環(huán)境搭建
- Python3 基礎(chǔ)語(yǔ)法
- Python3 解釋器
- Python3 列表(List)
- Python3 命名空間
- Python3 XML 解析
- Python3 JSON 解析
- Python3 日期和時(shí)間