python5.1文件的读取

Posted lma0702

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python5.1文件的读取相关的知识,希望对你有一定的参考价值。

fh1=open(r"C:\222.txt","r")#用open函数读取文件,“r”进行转义,fh1文件句柄
data=fh1.read()#把读取的句柄赋值给data
print(data)
print("第1种读......")

 

 

fh2=open(r"C:\222.txt","r")
for i in fh2:#用for循环进行编译
print(i)
print("第2种读写.....")

 

fh3=open(r"C:\222.txt","r")
data1=fh3.readline() #读取单行文字
print(data1)
print("第3种读写.....")

 

fh4=open(r"C:\222.txt","r")
data2=fh4.readlines() #读取所有行文字
print(data2)
print("第4种读写......")
fh4.close()#文件操作完毕,关闭IO资源

以上是关于python5.1文件的读取的主要内容,如果未能解决你的问题,请参考以下文章

python中怎么读取文件内容

Python3读取大文件的方法

python 读取日志文件

python 读取文件

python如何读取文件的内容

python读取ini配置文件+Scala读取配置文件