python-写入文件

Posted 2chun

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python-写入文件相关的知识,希望对你有一定的参考价值。

一、写入空文件(覆盖)

# 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-写入文件的主要内容,如果未能解决你的问题,请参考以下文章

如何将这个 Objective-C 代码片段写入 Swift?

python常用代码片段总结

我在哪里更改此 Python 代码片段以将临时文件保存在 tmp 文件夹中?

将 XSLT 转换的 XML 片段写入 XMLStreamWriter

从 Android Studio 中的片段将数据写入 Firebase

常用python日期日志获取内容循环的代码片段