Write a function, AvgList, that takes a single argument, a list, and returns the average (mean) of the numbers in the list. You
may assume that all elements of the list are numeric (int or float), and that the list has at least one element. Hints: Use the function SumList that you wrote above. Use the built-in function len to get the number of elements in the list.