码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2020-11-18 13:24:20      阅读:28      评论:0      收藏:0      [点我收藏+]

标签:mamicode   coding   style   实现   read   for   span   读写   encoding   

技术图片

 

 

#写古诗到文件中
f = open("gushi.txt","w",encoding="utf-8") #不加encoding="utf-8"文件会出现乱码
f.write(‘‘‘
静夜思
李白
窗前明月光,疑是地上霜。
举头望明月,低头思故乡。
‘‘‘)
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()

 技术图片

 

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

标签:mamicode   coding   style   实现   read   for   span   读写   encoding   

原文地址:https://www.cnblogs.com/yyc9/p/13969148.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!