Python File truncate() 方法

Python File(文件) 方法 Python File(文件) 方法


概述

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() 方法的使用:

文件 youj.txt 的內(nèi)容如下:

1:m.hgci.cn
2:m.hgci.cn
3:m.hgci.cn
4:m.hgci.cn
5:m.hgci.cn

循環(huán)讀取文件的內(nèi)容:

#!/usr/bin/python
# -*- coding: UTF-8 -*-

# 打開(kāi)文件
fo = open("youj.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é)果為:

文件名為:  youj.txt
讀取第一行: 1:m.hgci.cn

讀取數(shù)據(jù):

以下實(shí)例截取 youj.txt 文件的10個(gè)字節(jié):

#!/usr/bin/python
# -*- coding: UTF-8 -*-

# 打開(kāi)文件
fo = open("youj.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é)果為:

文件名為:  youj.txt
讀取數(shù)據(jù): 1:www.runo

Python File(文件) 方法 Python File(文件) 方法