python字符串写入文件
时间: 2024-01-04 11:03:35 浏览: 77
python保存字符串到文件的方法
以下是使用Python将字符串写入文件的方法:
1. 使用write方法:
```python
content = "Hello, world!"
with open("file.txt", "w") as file:
file.write(content)
```
这段代码将字符串"Hello, world!"写入名为file.txt的文件中。如果文件不存在,会创建一个新的文件;如果文件已存在,会清空文件的内容。
2. 使用writelines方法:
```python
lines = ["Line 1\n", "Line 2\n", "Line 3\n"]
with open("file.txt", "w") as file:
file.writelines(lines)
```
这段代码将字符串列表lines中的每个字符串写入名为file.txt的文件中。每个字符串都会单独占据一行。如果文件不存在,会创建一个新的文件;如果文件已存在,会清空文件的内容。
阅读全文