Python 3 – 文件读取(read())方法
描述
方法 read() 从文件中最多读取 size 个字节。如果读取到EOF之前就已经读取了size个字节,则只读取已经可用的字节。
语法
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
#!/usr/bin/python3
# 打开一个文件
fo = open("foo.txt", "r+")
print ("文件名为:", fo.name)
line = fo.read(10)
print ("读取的字符串为:%s" % (line))
# 关闭打开的文件
fo.close()
运行结果
当我们运行上面的程序时,它会产生以下结果 −
文件名为: foo.txt
读取的字符串为: This is 1s