关键字:open、read、readline、readlines
open函数主要用于读取文件内容,其常用方法包括read、readline、readlines,举例说明用法。
read函数默认读取文件所有内容,也可以指定读取文件大小,读取文件时指定每次读取内容蛀牙用于大文件的读取,比如大于内存容量的文件,100G,就只能通过此方法读取该文件。
# 默认读取所有内容
file = r"E:\icp_admin\help\1.txt"
with open(file=file,mode="r") as fp:
res = fp.read()
print(res)
# 一次读取指定大小内容
with open(file=file,mode="r") as fp:
buff = fp.read(5)
while(buff):
print(buff)
buff = fp.read(5)
readline函数默认读取一行内容,readlines默认读取所有内容并以列表形式返回
file = r"E:\icp_admin\help\1.txt"
# 读取一行内容
with open(file=file, mode="r") as fp:
buff = fp.readline()
print(buff)
# 逐行读取所有内容并以列表的形式返回
with open(file=file, mode="r") as fp:
buff = fp.readlines()
print(buff)