python打开txt文件并写入
时间: 2023-08-05 10:59:36 浏览: 110
Python创建txt文件并写入数据的代码如下:
```
with open("example.txt", "w") as file:
file.write("Hello World")
```
其中 `"example.txt"` 是文件名, `"w"` 表示以写入模式打开文件。
使用 `file.write("Hello World")` 将字符串 "Hello World" 写入文件。
阅读全文