文件的输入输出
程序员文章站
2024-03-17 09:36:28
...
数据格式的转换一直都是很重要的,利用python3很容易实现这种转换。
读写文件的格式:
fileobj=open(filenmae,mode)
fileobj是open()返回的文件对象;filename是该文件的字符串名;mode是指明文件类型和操作的字符串。
mode的格式有两个字母,第一个字母表明对其的操作,第二个字母是文件类型。最后需要关闭文件。
一.文本文件的读写
1.用write()写文本文件
poem="There was a young lady named Brigth.
There is a dog sit on room.
There was a cat eating fish."
fout=open("relativity","wt")
print(poem,file=fout,sep='',end='')
fout.close()
2.用read(),readline(),redalines()读文本文件
fin=open('relativity','rt')
poem=fin.read()
fin.close()
len(poem)
poem=''
fin=open('relativity','rt')
for line in fin:#使用迭代是读文本文件最简单的方式
poem+=line
fin.close()
len(poem)
fin=open('relativity','rt')
lines=fin.readlines()#readlines调用时每次读取一行
fin.close()
print(len(lines),'lines read')
for line in lines:
print(line,end='')