Average, minimum, and maximum Calculate the average, minimum, and maximum of some numbers - Input: At least two numbers - Output: Average Minimum Maximum Example: - Input: o numbers \( =[-1,-2,-3,-4,-5,10,9,11,-100,100] \) - Output: Max: 100 Min:-100 Average: \( 1.5 \) It is up to you how to provide input numbers. To name a few options, you may want to predefine the number of numbers you want to give and then read the numbers one by one. Or you may wish to provide the numbers as a list hard-coded in your program(EASY WAY). As long as you provide multiple numbers, everything is fine. \[ 3 \text { |page } \] BUSI1401 Python Assignment Max, Min, Average/Mean functions are NOT allowed.