我想在 Python 中找到二维列表的平均值。
这是我的清单的一个例子:
list = [[x, y, 1], [x, y, 1], [x, y, 2]]
我想添加第三行并仅找到该行的平均值。
这是我的代码:
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