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

python open 追加

时间:2019-02-18 19:14:57      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:logs   spl   导致   内容   test   代码   span   controls   html   

今天操作失误,导致home目录没空间了,结果跑了3天的程序断了,还好代码可以重新运行。

读写的文件使用追加方式:

# a
# 打开一个文件用于追加(只写),写入内容为str
# 如果该文件已存在,文件指针将会放在文件的结尾,新的内容将会被写入到已有内容之后
# 如果该文件不存在,创建新文件进行写入
# file = open(‘test.txt‘, ‘a‘)
# 创建一个空文件
# file = open(‘text.txt‘, ‘a‘)
# file.write(‘aaa‘)
# file.close()
# file = open(‘text.txt‘)
# print(file.read())
# file.close()

参考:https://www.cnblogs.com/zacharyVic/p/8940143.html

python open 追加

标签:logs   spl   导致   内容   test   代码   span   controls   html   

原文地址:https://www.cnblogs.com/TreeDream/p/10397179.html

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