例如:
用“a”打开文件进行追加,然后将文件截断为20个字节:
f = open("demofile2.txt", "a")f.truncate(20)f.close()#open and read the file after the truncate:f = open("demofile2.txt", "r")print(f.read())
1、定义和用法
truncate()
方法将文件大小调整为给定的字节数。
如果未指定大小,将使用当前位置。
2、调用语法
file.truncate(size)
3、参数说明
参数 | 描述 |
size | 可选的。截断后文件的大小(以字节为单位)。默认值:None,表示当前文件流位置。 |