python 将字符串写入txt
时间: 2023-10-06 15:05:28 浏览: 278
Learning Python Edition 4
5星 · 资源好评率100%
文件的方法是什么?
将一个字符串写入txt文件的python代码如下:
```python
# 打开一个txt文件
file = open('example.txt', 'w')
# 要写入的字符串
string = "Hello, world!"
# 将字符串写入txt文件
file.write(string)
# 关闭txt文件
file.close()
```
在上面的代码中,首先使用open函数打开一个txt文件并指定"w"模式,这表示我们将创建一个新的文件并写入数据。接下来,我们将要写入的字符串分配给变量string。最后,我们使用write方法将字符串写入文件,并使用close方法关闭文件。
阅读全文