将字符串写入txt文件
时间: 2023-09-13 10:05:51 浏览: 129
写字符串到文本文件中
好的,您可以使用以下代码将字符串写入txt文件:
```python
string = 'hello world!'
with open('example.txt', 'w') as file:
file.write(string)
```
这段代码创建了一个名为example.txt的txt文件,并将字符串'hello world!'写入其中。打开txt文件,您应该能够看到这个字符串。
阅读全文