Python 文件 read()方法

Python 文件 read()方法

read()方法从文件中最多读取size个字节。如果在获取size个字节之前,遇到文件结尾(EOF),则只读取可用字节。

语法

下面是read()方法的语法:

fileObject.read( size )

参数

  • size − 这是要从文件中读取的字节数。

返回值

该方法返回以字符串形式读取的字节。

以下示例显示了read()方法的用法。

假设’foo.txt’文件包含以下文本 −

This is 1st line
This is 2nd line
This is 3rd line
This is 4th line
This is 5th line

示例

# Open a file
fo = open("foo.txt", "r+")
print ("Name of the file: ", fo.name)
line = fo.read(10)
print ("Read Line: %s" % (line))

# Close the opened file
fo.close()

当我们运行上述程序时,它会产生以下输出−

Name of the file: foo.txt
Read Line: This is 1s

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程