📜  使用 python 代码示例获取 csv 文件的长度

📅  最后修改于: 2022-03-11 14:46:11.203000             🧑  作者: Mango

代码示例1
input_file = open("nameOfFile.csv","r+")
reader_file = csv.reader(input_file)
value = len(list(reader_file))