Define a function named "calAverage" which take a list of integers as parameter. This function
will then calculate and store the average into a variable named "result". Finally, the function
MUST return the result with 2 decimal place only. For Example given the following list,
[2,6,8,3,4,6], the function will return 4.83 (float).
def calAverage(list):
result = round(sum(list)/len(list), 2)
return result
print(calAverage([2, 6, 8, 3, 4, 6]))
Comments
Leave a comment