python 生成txt文件
时间: 2023-09-14 17:11:45 浏览: 109
要在 Python 中生成一个 txt 文件,可以采用以下步骤:
1. 打开文件:使用 open() 函数打开一个文件,第一个参数为文件名,第二个参数为打开模式,其中 'w' 表示写入模式。例如:
```
file = open('example.txt', 'w')
```
2. 写入内容:使用 write() 函数向文件中写入内容。例如:
```
file.write('Hello, world!')
```
3. 关闭文件:写入完成后,使用 close() 函数关闭文件。例如:
```
file.close()
```
完整代码示例:
```
file = open('example.txt', 'w')
file.write('Hello, world!')
file.close()
```
此时,生成的 example.txt 文件中应该包含一行文本 "Hello, world!"。
阅读全文