gpt4 book ai didi

python - 我如何打印/返回文件中的行数

转载 作者:太空宇宙 更新时间:2023-11-04 09:12:34 25 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
How to get line count cheaply in Python?

我想打印一个文件中有多少行。

到目前为止我所拥有的是这个,但它会打印每一行的编号,我不确定如何让 Python 只打印最后一行。

filename = input('Filename: ')

f= open(filename,'r')

counter = 1

line = f.readline()
while(line):
clean_line = line.strip()
print(counter)
line = f.readline()
counter += 1
f.close()

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com