def getAverage(numList):
total = 0
for i in range(0, len(numList)):
total = float(numList)
total = total + numList
average = total/len(numList)
return average
Hi, I'm really, really new to python, I'm having error on this function and I can't solve it yet, so can someone help? Thank-you :)