python readfile函数,python file.readlines()
在计算机中,文件包括文档、图片、视频、程序组件等。每种类型的文件都有不同的功能或作用。例如,一个程序通常由主程序、动态库、配置文件等组成。这些也是文件,起到支持程序运行的作用。要使用一个文件,第一个操作是打开并读取该文件。那么如何用python读取文件呢?实际上,使用python文件read()方法。
描述
read()方法是Python的file方法,用于读取文件内容并返回文件内容的字符串。
语法
file.read(大小)返回值
读取文件并返回字符串类型的值。
使用示例
1. size省略,一次性读完整个文件
要读取的文件demo.txt:
2019
Python代码:
data=open(demo.txt , r )。阅读()
打印执行结果(数据):
20192. 指定字节数读取文件
pan style="font-family: 微软雅黑, "Microsoft YaHei";">待读取的文件:demo.txt
AthreadisabasicunitofCPUexecution.Itmustdependontheprocesssurviving.Athreadisanexecutioncontext,whichiswhataCPUneedstoexecute
假设我们只希望读取30字节的数据:
data=open("demo.txt","r").read(30)
执行结果如下:
AthreadisabasicunitofCP
注意事项:
1. size为负时
当size值为负数时read()方法不会报错,此时read()方法会读完整个文件。
待读取的文件:demo.txt
AthreadisabasicunitofCPUexecution.Itmustdependontheprocesssurviving.Athreadisanexecutioncontext,whichiswhataCPUneedstoexecute
python脚本:
data=open("demo.txt","r").read(-1)
执行结果:
AthreadisabasicunitofCPUexecution.Itmustdependontheprocesssurviving.Athreadisanexecutioncontext,whichiswhataCPUneedstoexecute
2. size为0时
当size等于0时,read方法返回一个空串。
data=open("demo.txt","r").read(0)
执行结果:
<class'str'> 0
为何要使用Size?
当文件过大,内存不够一次性读取整个文件时,就需要分批读取文件。合理使用size可以妥善处理文件大于内存的场景。
文章来源于网络,如有雷同,请联系作者。
郑重声明:本文由网友发布,不代表盛行IT的观点,版权归原作者所有,仅为传播更多信息之目的,如有侵权请联系,我们将第一时间修改或删除,多谢。