python读取txt文件中的内容
时间: 2024-06-18 10:06:05 浏览: 176
读取txt文件排序.zip
Python 读取 txt 文件可以通过以下几个步骤:
1. 打开文件:使用 Python 的 built-in 函数 open(),传入文件路径和打开方式(默认为只读方式 r)来打开文件,例如:
```
file = open('example.txt', 'r')
```
2. 读取文件内容:使用 read() 函数来读取文件中的内容,例如:
```
content = file.read()
```
3. 关闭文件:使用 close() 函数来关闭文件,例如:
```
file.close()
```
完整代码示例如下:
```
file = open('example.txt', 'r')
content = file.read()
print(content)
file.close()
```
阅读全文