第13373题 单选题
运行给定Python统计文件行数的代码,输出结果正确的是?
filename = "example.txt"
line_count = 0
with open(filename, "r") as file:
    for line in file:
        line_count += 1
print(f"The file 'example' has {line_count} lines.")

其中example.txt文件内容如下:

      My Favorite Animal
Once upon a time, I had a pet dog named Max. Max was the most obedient dog I knew.
We played fetch in the park, went on long walks in the woods, and even took naps together on lazy afternoons.
{{ option.label }}
子题{{ index + 1 }} {{ child.type_label }}
{{ option.label }}
✓ 正确 ◐ 部分正确 ✗ 错误
程序运行统计
暂无判题统计
提交{{ questionInfo.stats ? questionInfo.stats.submit_count : 0 }}次 正确率{{ statsAccuracy }}%
答案解析