Python 统计 csv 文件共多少行

with open('data.csv', 'r') as f:
    print(len(f.readlines()))

你可能感兴趣的:(Python 统计 csv 文件共多少行)