阅读量:0
在Python中,可以使用以下代码统计并输出文件的行数:
def count_lines(file_path): line_count = 0 with open(file_path, 'r') as file: for line in file: line_count += 1 return line_count file_path = 'example.txt' # 文件路径 line_count = count_lines(file_path) print(f'文件 {file_path} 的行数为 {line_count} 行。')
在上述代码中,定义了一个count_lines
函数,该函数接受一个文件路径作为参数,然后打开文件并逐行读取,每读取一行就将行数加一。最后返回行数。通过调用该函数并传入文件路径,即可统计并输出文件的行数。
需要注意的是,代码中使用with open(file_path, 'r') as file:
来打开文件,这样可以在文件使用完毕后自动关闭文件,避免资源泄漏。