Python/ref file truncate

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python文件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())

定义和用法

The truncate() 方法将文件大小调整为给定的字节数。

如果未指定尺寸,将使用当前位置。

句法

file.truncate(size)
  

参数值

参数 描述
size 可选的。截断后文件的大小(以字节为单位)。默认

None ,表示当前文件流的位置。

❮档案方法