轻松上手,快乐学习!

Python 文件 read() 方法


实例

读取文件“demofile.txt”的内容:
f = open("demofile.txt", "r")
print(f.read())
运行示例»

定义和用法

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

语法

file.read()

参数值

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

更多例子

实例

阅读文件“demofile.txt”的内容:
f = open("demofile.txt", "r")
print(f.read(33))
运行示例»