大家好 我想请问一下
python 读写csv 文件 怎么input一个月份,然后算出该月的平均值呢
csv file里是一月到十二月的数据, 我现在已经写出来了一月的平均温度 但怎么改成随便input一个月份,就算出该月份的平均温度呢
我的代码长这样的
import csv
def is_float(value):
try:
fval = float(value)
return True
except ValueError:
return False
csvfile = open('Tara_Hills_temp.csv')
csvreader = csv.reader(csvfile)
sumtemps = 0.0
num_temps = 0
for row in csvreader:
val = row[1] #Jan
if is_float(val):
sumtemps += float(val)
num_temps += 1
avg = sumtemps / num_temps
user = input("Enter a month:")
print("Average tempearture for", user "is: ",avg)