Question: 
Write a python function to find the average of a list.


Model's Code:
def Average(lst):
    return sum(lst) / len(lst)



Sample Correct Code:
def Average(lst): 
    return sum(lst) / len(lst) 


Asserts:
assert Average([15, 9, 55, 41, 35, 20, 62, 49]) == 35.75
assert Average([4, 5, 1, 2, 9, 7, 10, 8]) == 5.75
assert Average([1,2,3]) == 2


Tests:
Test 1 of 3: PASS
Test 2 of 3: PASS
Test 3 of 3: PASS

Test 959 of 974: 734/959 (76.53806047966631%): success