python读取txt文件的代码
时间: 2023-09-07 12:14:32 浏览: 99
demo_python读取shapefile文件_
以下是Python读取txt文件的代码示例:
```python
# 打开文件
file = open('example.txt', 'r', encoding='utf-8')
# 读取文件内容
content = file.read()
# 关闭文件
file.close()
# 输出文件内容
print(content)
```
代码中,`open()` 函数用于打开指定的文件,并指定打开模式为 `r`(只读模式),同时指定编码为 `utf-8`(可选)。然后使用 `read()` 方法读取文件内容,并将其存储到变量 `content` 中。最后,使用 `close()` 方法关闭文件句柄。
阅读全文