标签:参数 pat process path get 习惯 结束 遇到 ini
python中有三种读取文件的函数:
然而它们的区别是什么呢,在平时用到时总会遇到,今天总结一下。
首先新建一个文件read.txt,用于实际效果举例
Hello
welcome to my world
you are so clever !!!
read(size)方法从文件当前位置起读取size个字节,默认(无参数)表示读取至文件结束为止,它的返回为字符串对象
测试程序如下:
import os
with open(os.path.join(os.getcwd(), ‘read.txt‘)) as f:
content = f.read()
print(content)
print(type(content))
这里需要注意两点:
我用到了os相关操作,即省去了需要输入文件完整路径的麻烦。
大家要养成with open file as f: 这一习惯,即操作完毕后让其自动关闭文件。
Hello
welcome to my world
you are so clever !!!
<class ‘str‘>
Process finished with exit code 0
每次只读一行内容,读取时内存占用较少(适用于大文件),它的返回为字符串对象
测试程序:
import os
with open(os.path.join(os.getcwd(), ‘read.txt‘)) as f:
content = f.readline()
print(content)
print(type(content))
输出结果:
Hello
<class ‘str‘>
Process finished with exit code 0
读取文件所有行,保存在列表(list)变量中,列表中每一行为一个元素,它返回的是一个列表对象。
测试程序:
import os
with open(os.path.join(os.getcwd(), ‘read.txt‘)) as f:
content = f.readlines()
print(content)
print(type(content))
输出结果:
[‘Hello\n‘, ‘welcome to my world\n‘, ‘1234\n‘, ‘you are so clever !!!‘]
<class ‘list‘>
Process finished with exit code 0
python读写文件中read()、readline()和readlines()的用法
标签:参数 pat process path get 习惯 结束 遇到 ini
原文地址:https://www.cnblogs.com/wujingqiao/p/9463100.html