Python/ref file read

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

<languages />

Python文件read()方法

❮档案方法

读取文件“ demofile.txt”的内容:

    f = open("demofile.txt", "r")
print(f.read())

定义和用法

The read() 方法从文件中返回指定的字节数。默认值为-1,表示整个文件。

句法

file.read()
  

参数值

参数 描述
size 可选的。要返回的字节数。默认值-1,表示整个文件。

更多例子

读取文件“ demofile.txt”的内容:

    f = open("demofile.txt", "r")
print(f.read(33))

❮档案方法