怎样向文件中写入多行数据
时间: 2024-04-29 16:24:55 浏览: 97
循环向一个文件写入100行数据
你可以使用文件流对象,先打开文件,再使用循环语句向文件中写入多行数据,具体操作可以参考以下代码:
```python
with open("file.txt", "w") as f:
lines = ["line 1\n", "line 2\n", "line 3\n"]
f.writelines(lines)
```
这样可以将列表中的多行数据写入到名为 file.txt 的文件中。
阅读全文