文本文件读取三种方法:
第一种方法
直接读入
file1 = open("test.txt")
file2 = open("output.txt","w")
while True:
line = file1.readline()
#这里可以进行逻辑处理
file2.write('"'+line[:s]+'"'+",")
if not line:
break
#记住文件处理完,关闭是个好习惯
file1.close()
file2.close()
读文件有3种方法:
- read()将文本文件所有行读到一个字符串中。
- readline()是一行一行的读。
- readlines()是将文本文件中所有行读到一个list中,文本文件每一行是list的一个元素。 优点:readline()可以在读行过程中跳过特定行。
第二种方法:
文件迭代器,用for循环的方法
file2 = open("output.txt","w")
for line in open("test.txt"):
#这里可以进行逻辑处理
file2.write('"'+line[:s]+'"'+",")
第三种方法:
文件山下文管理器
#打开文件
#用with..open自带关闭文本的功能
with open('somefile.txt', 'r') as f:
data = f.read()
# loop整个文档
with open('somefile.txt', 'r') as f:
for line in f:
# 处理每一行
# 写入文本
with open('somefile.txt', 'w') as f:
f.write(text1)
f.write(text2)
...
# 把要打印的line写入文件中
with open('somefile.txt', 'w') as f:
print(line1, file=f)
print(line2, file=f)
tips:
- w write 可写文件,当作新的文件打开擦掉重新写
- r read 可读文件,默认是r
- a append 继续写文件,文件打开在下面继续写