Define a function named "calAverage" which take a list of integers as parameter. This function will then calculate and s
Posted: Sat Nov 27, 2021 10:32 am
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).
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).