python read readline readlines区别
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python read readline readlines区别相关的知识,希望对你有一定的参考价值。
file 对象使用 open 函数来创建,下表列出了 file 对象常用函数read、readline、readlines区别:
1.从文件读取指定的字节数,size如果未给定或为负则读取所有。
file.read([size])
2.读取整行,包括 "\\n" 字符。
file.readline([size])
3.读取所有行并返回列表,若给定sizeint>0,返回总和大约为sizeint字节的行, 实际读取值可能比 sizeint 较大, 因为需要填充缓冲区。
file.readlines([sizeint])
举个列子:
read
readline
readlines
以上是关于python read readline readlines区别的主要内容,如果未能解决你的问题,请参考以下文章
Python 三种读文件方法read(), readline(), readlines()及去掉换行符
Python_报错:TypeError: file must have 'read' and 'readline' attributes