python2.7 判断文件是存在 在就读取遍历
时间: 2024-03-05 12:54:33 浏览: 61
好的,针对您的问题,以下是 Python 2.7 的代码示例:
```python
import os
filename = "example.txt"
if os.path.exists(filename):
with open(filename, "r") as file:
for line in file:
print(line)
else:
print("File does not exist.")
```
这段代码首先检查文件名为 "example.txt" 的文件是否存在。如果存在,它将打开该文件并逐行读取并打印文件内容。如果文件不存在,它将打印 "File does not exist."。
阅读全文