Python:计算csv文件的数字总和

时间:2017-10-21 15:00:23

标签: python-3.x

在python中:从csv文件(包含3行)开始,如何计算此文件中所有数字的总和?

1 个答案:

答案 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)

如果您知道文件中只有数字,那么这样的事情就可以了。