Python truncate() 文件方法
-
定义和用法
truncate() 方法将文件大小调整为给定的字节数。如果未指定大小,将使用当前位置。 -
实例
用“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())
-
句法
file.truncate(size)
-
参数值
参数 必需的 描述 size 是 截断后文件的大小(以字节为单位)。 默认值:None,表示当前文件流位置。 -
相关页面
readline() 从文件返回一行。您还可以使用size参数指定要从该行返回多少字节。