python 字符串输出txt
时间: 2023-06-23 09:54:01 浏览: 95
Python_字符串处理.txt
要将 Python 字符串输出到 txt 文件中,可以按照以下步骤进行:
1. 打开文件:使用 `open()` 函数打开一个 txt 文件,并指定打开方式为写入模式。例如:
```python
file = open("output.txt", "w")
```
这将打开名为 `output.txt` 的文件,并将文件对象赋值给变量 `file`。
2. 写入内容:使用 `write()` 函数向文件中写入字符串。例如:
```python
file.write("Hello, world!")
```
这将向文件中写入字符串 "Hello, world!"。
3. 关闭文件:使用 `close()` 函数关闭文件。例如:
```python
file.close()
```
完整代码示例:
```python
file = open("output.txt", "w")
file.write("Hello, world!")
file.close()
```
这将在当前目录下创建一个名为 `output.txt` 的文件,并将字符串 "Hello, world!" 写入该文件中。
阅读全文