python with open写入文件
时间: 2023-04-28 20:06:31 浏览: 89
Python写入文件
Python 使用 `with open` 写入文件的方法如下:
```
with open(filename, 'w') as f:
f.write(content)
```
其中 `filename` 是文件的路径,`'w'` 表示以写入模式打开文件, `content` 是要写入文件的内容。
使用 `with open` 方式打开文件时,不需要手动关闭文件,在 `with` 代码块结束后会自动关闭文件。
阅读全文