共计 681 个字符,预计需要花费 2 分钟才能阅读完成。
在 Python 中,可以通过以下几种方式向文件中写入数据:
- 使用
open()
函数以写入模式打开文件,并利用write()
函数写入数据,最后通过close()
函数关闭文件。示例代码如下:
file = open("example.txt", "w") # 打开文件,以写入模式
file.write("Hello, World!") # 写入数据
file.close() # 关闭文件
- 使用
with open()
语句打开文件,这种方式可以自动关闭文件,无需调用close()
函数。示例代码如下:
with open("example.txt", "w") as file:
file.write("Hello, World!") # 写入数据
- 使用
open()
函数以追加模式打开文件,并利用write()
函数写入数据,这样可以在文件末尾添加内容而不覆盖之前的内容。示例代码如下:
file = open("example.txt", "a") # 打开文件,以追加模式
file.write("Hello, World!") # 写入数据
file.close() # 关闭文件
注意:在使用以上方法写入数据时,如果文件不存在,会自动创建新文件;如果文件已存在,会覆盖原有内容(除非使用追加模式)。
另外,还可以使用 writelines()
函数一次写入多行数据,如下所示:
lines = ["Line 1\n", "Line 2\n", "Line 3\n"]
with open("example.txt", "w") as file:
file.writelines(lines)
以上代码将会把 lines
列表中的每一行数据写入文件中。
丸趣 TV 网 – 提供最优质的资源集合!
正文完