可以使用`open()`函数来打开一个txt文件,并指定打开方式为写入模式('w')。然后,可以使用文件对象的`write()`方法将字符串写入文件。
示例代码如下:
```python
# 打开文件,指定打开方式为写入模式
file = open('example.txt', 'w')
# 写入字符串
file.write('Hello, World!')
# 关闭文件
file.close()
```
运行上述代码后,会在同级目录下创建一个名为`example.txt`的文件,并将字符串`Hello, World!`写入该文件中。