Question: The below is using Python programming The following shows an example execution of the program without input error. Complete the following two functions that can
The below is using Python programming
The following shows an example execution of the program without input error.

Complete the following two functions that can be used for lists.
(i) This function receives a list of numbers and return the sum of only the positive numbers. The function should return None if there is no positive number. Assume that the parameter numlist is a list. def sumPos(numlist)
ii) This function returns True if any number in the list parameter check is larger than any number in the list parameter numlist. Assume that both parameters are lists. def checkLarger(numlist, check)
Enter Bitcoin rate of day 1 (USD): 43000 Enter Bitcoin rate of day 2 (USD): 45000 Enter Bitcoin rate of day 3 (USD): 46000 Enter Bitcoin rate of day 4 (USD): 42000 Enter Bitcoin rate of day 5 (USD): 38000 The highest rate is 46000.0 The lowest rate is 38000.0 The average rate is 42800.0 HOLD
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
