在python中:从csv文件(包含3行)开始,如何计算此文件中所有数字的总和?
答案 0 :(得分:0)
import csv
total = 0
with open("file_with_three_lines.csv") as file:
for row in csv.reader(file, delimiter=','):
for col in row:
total += int(col)
如果您知道文件中只有数字,那么这样的事情就可以了。