在计算机中,文件包括了文档、图片、视频、程序组件等,每个类型的文件都有不同的作用或功用。例如一个程序通常由主程序、动态库、配置文件等组成,这些也是文件,起到支持程序运行的作用。想要使用文件,第一个操作就是打开读取文件,那么在python如何读取文件呢?其实使用Python file read()()方法。
我们一直强调成都网站制作、成都做网站、外贸营销网站建设对于企业的重要性,如果您也觉得重要,那么就需要我们慎重对待,选择一个安全靠谱的网站建设公司,企业网站我们建议是要么不做,要么就做好,让网站能真正成为企业发展过程中的有力推手。专业网络公司不一定是大公司,创新互联公司作为专业的网络公司选择我们就是放心。
描述
read()方法是Python的文件方法,用于读取文件中的内容,并返回文件内容的字符串。
语法
file.read(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))
执行结果:
0
为何要使用Size?
当文件过大,内存不够一次性读取整个文件时,就需要分批读取文件。合理使用size可以妥善处理文件大于内存的场景。
文章来源于网络,如有雷同,请联系作者。
标题名称:创新互联Python教程:Pythonfileread()方法
浏览地址:http://www.shufengxianlan.com/qtweb/news29/243479.html
网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联