gpt4 book ai didi

python - 如何在 Python 中廉价地获取大文件的行数?

转载 作者:IT老高 更新时间:2023-10-28 11:58:36 26 4
gpt4 key购买 nike

如何以最节省内存和时间的方式获取大文件的行数?

def file_len(filename):
with open(filename) as f:
for i, _ in enumerate(f):
pass
return i + 1

最佳答案

一行,可能很快:

num_lines = sum(1 for line in open('myfile.txt'))

关于python - 如何在 Python 中廉价地获取大文件的行数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/845058/

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