Question: Write the definition of a Python function called avBig which takes a parameter called myList,and returns the mean (average) value of all integers in myList
Write the definition of a Python function called avBig which takes a parameter called myList,and returns the mean (average) value of all integers in myList that are > 3. If myList is not a list, then avBig should return -1. (Example: If myList = [3, 4, 3, 1, 5] then avBig returns 4.5)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
