python读取、写⼊txt⽂本内容⼀、python 中打开⽂件,
python中读写txt⽂件,⾸先得打开⽂件,即使⽤open()函数,
lastpath1 =r'D:\apache-jmeter-4.0\'
file1 =open(lastpath,'r'')
可以使⽤不同的模式打开⽂件,如:r,r+,w,w+,a,a+,它们的区别如下:
注意:write()会创建⽂件
⼆、读取txt⽂件
python常⽤的读取⽂件函数有三种read()、readline()、readlines()*
(1)、read() ⼀次性读全部内容 ⼀次性读取⽂本中全部的内容,以字符串的形式返回结果
python怎么读文件path1=r'D:\'
file1=open(path1,'r')
ad()
print(content1)
file1.close()#⽂件打开,使⽤完毕后需要关闭
(2)、readline() 读取第⼀⾏内容,只读取⽂本第⼀⾏的内容,以字符串的形式返回结果
path2=r'D:\'
file2=open(path1,'r')
adline()
print(content2)
file2.close()#⽂件打开,使⽤完毕后需要关闭
(3)、readlines()读取⽂本所有内容,并且以数列的格式返回结果,
path3=r'D:\'
file3=open(path3,'r')
adlines()
print(content3)
file3.close()#⽂件打开,使⽤完毕后需要关闭
返回结果:
['one\n','two\n','three\n','four\n','five']
因readlines()会读到换⾏符,所以⼀般配合for in使⽤去除换⾏符
f =open("","r")
for line adlines():
line = line.strip('\n')#去掉列表中每⼀个元素的换⾏符
print(line)
f.close()
三、txt⽂件中写⼊
常⽤函数:write()
1、⽂件中写⼊内容,⾸先需要打开⽂件
2.wirte()写⼊后默认不换⾏
path2 =r'D:\'
file2 =open(path2,'w+')
file2.write('aaa')
b ='ccc'
file2.write(b)
四、关闭⽂件
⽂件打开最后需要关闭,常⽤函数为close()
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论