python 新建一个txt 不断写入txt文件
时间: 2023-07-14 11:59:11 浏览: 88
python循环写入txt文件,防止内容被覆盖
好的,你可以使用以下代码在Python中创建一个新的txt文件并不断向其中写入内容:
```python
def write_to_txt(file_path, content):
with open(file_path, 'a') as file:
file.write(content + '\n')
# 设置txt文件路径
txt_file_path = 'path/to/your/file.txt'
# 写入内容
write_to_txt(txt_file_path, "第一行内容")
write_to_txt(txt_file_path, "第二行内容")
write_to_txt(txt_file_path, "第三行内容")
```
请将`path/to/your/file.txt`替换为你想要保存txt文件的实际路径。以上代码会将内容分行写入文件中,并且每次写入都会追加到文件的末尾。你可以根据需要调用`write_to_txt()`函数来写入新的内容。
阅读全文