Python实现文件读写,并添加异常处理
2021-03-17 15:26
阅读:586
‘‘‘) #复制:先读出文件中内容,再写入新的文件 content = f.readlines() f.close()
f.close()
f = open("gushi.txt","r",encoding="utf-8")
m = open("copy.txt","w",encoding="utf-8")
# m.write(content) 不能这样写,write()里面只能写字符串,不能写列表
for i in content:
m.write(i)
m.close()
文章来自:搜素材网的编程语言模块,转载请注明文章出处。
文章标题:Python实现文件读写,并添加异常处理
文章链接:http://soscw.com/index.php/essay/65363.html
文章标题:Python实现文件读写,并添加异常处理
文章链接:http://soscw.com/index.php/essay/65363.html
评论
亲,登录后才可以留言!