python中用with open写入文件的实例代码
时间: 2024-03-05 18:53:25 浏览: 211
python 读取excel文件生成sql文件实例详解
下面是一个使用`with open`向文件中写入内容的示例代码:
```python
with open('example.txt', 'w') as f:
f.write('Hello, world!')
```
在上面的代码中,我们打开一个名为`example.txt`的文件,使用`with open`语句来确保文件在使用完毕后被正确关闭。`'w'`表示以写入模式打开该文件。使用`f.write()`方法向文件中写入`'Hello, world!'`字符串。当`with`块结束时,文件将被自动关闭并保存。
阅读全文