Python file read()方法
程序员文章站
2022-04-19 17:16:36
...
目录
描述
read()方法是Python的文件方法,用于读取文件中的内容,并返回文件内容的字符串。
语法
file.read(size)
参数
参数 | 说明 | 备注 |
size | 读取文件的字节数 | 正整数参数,可省略。省略时表示一次性读完整个文件 |
返回值
读取文件,返回字符串类型的值。
使用示例
1. size省略,一次性读完整个文件
待读取的文件 demo.txt:
2019
python代码:
data = open("demo.txt", "r").read()
print(data)
执行结果:
2019
2. 指定字节数读取文件
待读取的文件:demo.txt
A thread is a basic unit of CPU execution. It must depend on the process surviving. A thread is an execution context, which is what a CPU needs to execute
A list of instructions. In Python, multithreading takes longer.
假设我们只希望读取30字节的数据:
data = open("demo.txt", "r").read(30)
print(data)
执行结果如下:
A thread is a basic unit of CP
注意事项:
1. size为负时
当size值为负数时read()方法不会报错,此时read()方法会读完整个文件。
待读取的文件:demo.txt
A thread is a basic unit of CPU execution. It must depend on the process surviving. A thread is an execution context, which is what a CPU needs to execute
A list of instructions. In Python, multithreading takes longer.
Python脚本:
data = open("demo.txt", "r").read(-1)
print(data)
执行结果:
A thread is a basic unit of CPU execution. It must depend on the process surviving. A thread is an execution context, which is what a CPU needs to execute
A list of instructions. In Python, multithreading takes longer.
2. size为0时
当size等于0时,read方法返回一个空串。
data = open("demo.txt", "r").read(0)
print(data)
print(type(data))
print(len(data))
执行结果:
<class 'str'>
0
为何要使用Size?
当文件过大,内存不够一次性读取整个文件时,就需要分批读取文件。合理使用size可以妥善处理文件大于内存的场景。
推荐阅读
-
python遍历数组的方法小结
-
python使用sorted函数对列表进行排序的方法
-
python使用mailbox打印电子邮件的方法
-
从零学python系列之浅谈pickle模块封装和拆封数据对象的方法
-
利用Python脚本生成sitemap.xml的实现方法
-
python赋值操作方法分享
-
python读取注册表中值的方法
-
PHP错误Parse error: syntax error, unexpected end of file in test.php on line 12解决方法_php技巧
-
python模拟鼠标拖动操作的方法
-
Python把csv数据写入list和字典类型的变量脚本方法