A survey claims that 9 out of 10 doctors (i.e., 90%) recomme…

A survey claims that 9 out of 10 doctors (i.e., 90%) recommend brand Z for their patients who have children. To test this claim against the alternative that the actual proportion of doctors who recommend brand Z is less than 90%, a random sample of 100 doctors results in 83 who indicate that they recommend brand Z. The test statistic in this problem is approximately (round to the nearest hundredth)

Write a complete Python program that includes the function f…

Write a complete Python program that includes the function filter_numbers that accepts a list of numbers, and two default parameters min_val=0, max_val=100 and a key word parameter called return_type that can hold “list/sum/count” The function filters numbers between 0 and 100 (inclusive) depending onnthe return_type it should return   “list” → return the filtered list “sum” → return the sum of filtered numbers “count” → return the count of filtered number def filter_numbers(numbers, min_val=0, max_val=100, return_type=”list”):               #Write your code here