Answer to Question #303090 in Python for rgtd

Question #303090

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).



1
Expert's answer
2022-02-27T04:12:24-0500
def calAverage(list):
    result = round(sum(list)/len(list), 2)
    return result
    
print(calAverage([2, 6, 8, 3, 4, 6]))

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS