Python实现文件读写,并添加异常处理

2021-03-17 15:26

阅读:586

‘‘‘)
f.close()

#复制:先读出文件中内容,再写入新的文件
f = open("gushi.txt","r",encoding="utf-8")
m = open("copy.txt","w",encoding="utf-8")

content = f.readlines()
# m.write(content) 不能这样写,write()里面只能写字符串,不能写列表
for i in content:
m.write(i)

f.close()
m.close()


评论


亲,登录后才可以留言!