<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))
❮档案方法