编写一个 Python 程序:统计文本文件的总行数。
Write a Python program to count the total number of lines in a text file.
题目类型: 技术面试题
这是一道技术面试题,常见于澳洲IT公司面试中。
难度: medium
分类: Python
标签: file, count-lines
参考答案摘要
答案 def file_count(fname): with open(fname) as f: for i, l in enumerate(f): pass return i+1 print("Total number of lines in text file:", file_count("file.txt"))
本题提供 STAR 原则详细解答和技术解析,登录匠人学院学习中心即可查看完整答案。