帮我写一个python读取txt文件
时间: 2023-07-18 14:30:47 浏览: 93
python读取txt文件中特定位置字符的方法
5星 · 资源好评率100%
当然,下面是一个简单的例子,演示如何使用Python读取txt文件中的内容:
```python
with open('file.txt', 'r') as f:
content = f.read()
print(content)
```
其中,`with` 语句可以自动关闭文件,`f.read()` 可以一次性读取整个文件内容并赋值给 `content` 变量,最后使用 `print()` 函数输出文件内容。你只需要将 `file.txt` 替换为你要读取的文件名即可。
阅读全文