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

python-写入文件

时间:2019-10-30 18:10:08      阅读:70      评论:0      收藏:0      [点我收藏+]

标签:换行   pytho   创建   写入文件   技术   image   with open   ack   text   

一、写入空文件(覆盖)

# coding=UTF-8
filename = test_text.txt
with open(filename, w) as file_object:
    file_object.write("Add a word")

如果写入文件不存在,open()将自动创建它

如果文件已存在已有内容,会清空再写入

 

写入多行

# coding=UTF-8
filename = test_text.txt
with open(filename, w) as file_object:
    file_object.write("Add a word")
    file_object.write("Add two words")

技术图片

 

 加换行符

# coding=UTF-8
filename = test_text.txt
with open(filename, w) as file_object:
    file_object.write("Add a word\n")
    file_object.write("Add two words\n")

技术图片

 

 二、在原有文件上添加内容

用‘a’

# coding=UTF-8
filename = test_text.txt
with open(filename, a) as file_object:
    file_object.write("lalala\n")
    file_object.write("hahaha\n")

技术图片

 

python-写入文件

标签:换行   pytho   创建   写入文件   技术   image   with open   ack   text   

原文地址:https://www.cnblogs.com/erchun/p/11766408.html

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