我有一个 csv 文件,我需要对字符串中的某些数字进行总计。我得到了帮助才能做到这一点,答案很好。我是 python 新手。我的示例 csv 文件是这样的:
header row
date,ttp_ws_sm_001_01, , , , , , , , , , , ,117
date,ttp_ws_sm_001_blank, , , , , , , , , , , ,31
date,ttp_ws_sm_045_01, , , , , , , , , , , ,145
date,ttp_ws_sm_045_blank, , , , , , , , , , , ,55
date,ttp_ws_sm_057_blank, , , , , , , , , , , ,98
date,ttpv1_001_, , , , , , , , , , , ,67
date,ttpv1_001_01, , , , , , , , , , , ,67*
我的代码可以在打印时将所有 001 全部放入一行中。我需要获取所有不同的代码,例如 001、045、002 等,以便打印出每个数字的所有总数。
import csv
import sys
import os
def main():
total = 0
source = '\\\\Isfs\\data$\\GIS Carto\TTP_Draw_Count'
with open(os.path.join(source, 'TTP_13_08.csv'), 'r') as f:
rows = csv.reader(f)
club_num = str(int('001') + 1
for row in rows:
try:
t = row[1].split('_')
except IndexError:
continue
if len(t) >= 4 and t[3] == (club_num) or \
len(t) >= 2 and t[1] == (club_num):
total += int(row[13])
club_num = int(club_num + 1)
print (str(club_num) + '\t' + str(total))
if __name__ == '__main__':
main()
如果我取出 club_num 它将给出一个很好的结果
Club 001 148
我需要的是
club 001 148
club 002 some number
club 045 200
etc...