Pythonで2次元リストの平均を求めたいです。
これは私のリストの例です:
list = [[x, y, 1], [x, y, 1], [x, y, 2]]
3行目を追加して、その行のみの平均を求めたいです。
これは私のコードです:
def averageList(list):
averagefile = []
sum = 0
for count in range(0, len(list)):
try:
sum = sum + float(list[count][2])
except ValueError:
print ''
average = sum / len(list[count])
averagefile.append(average)
print averagefile
#return averageList