python怎么写入text文件
时间: 2024-02-02 21:02:39 浏览: 59
Python写入文件
要将文本写入文件,可以使用 Python 内置的 `open()` 函数,如下所示:
```python
with open('filename.txt', 'w') as f:
f.write('Writing some text to the file.')
```
这将创建(或打开)文件 `'filename.txt'`,并使用 `'w'` 模式将文本写入文件中。在此过程中,`with` 语句将自动关闭文件句柄。如果需要附加到文件末尾而不是覆盖文件中的内容,可以将模式设置为 `'a'`。
阅读全文