码迷,mamicode.com
首页 > 其他好文 > 详细

Pthon 文件追加模式

时间:2017-07-21 10:35:54      阅读:92      评论:0      收藏:0      [点我收藏+]

标签:encoding   关闭   utf-8   coding   lines   enc   bsp   文件   close   

a, 追加模式【可读;   不存在则创建;存在则只追加内容】

#文件写模式
f=open(‘a.txt‘,‘a‘,encoding=‘utf-8‘)
#文件写
f.write(‘11111\n‘)
f.write(‘2222\n‘)
f.write(‘3333\n4444\n‘)
#文件写多行
f.writelines([‘a\n‘,‘b\n‘,‘c\n‘])
#关闭
f.close()

Pthon 文件追加模式

标签:encoding   关闭   utf-8   coding   lines   enc   bsp   文件   close   

原文地址:http://www.cnblogs.com/liuxiaowei/p/7215556.html

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