Question: 2. Begin by writing a function called any_above that takes a list of 1 or more prices and an integer threshold, and uses a loop

2. Begin by writing a function called any_above that takes a list of 1 or more prices and an integer threshold, and uses a loop to determine if there are any prices above that threshold. The function should return True if there are any prices above the threshold, and False otherwise. For example:

>>> any_above([10, 20, 15], 18) True >>> print(any_above([10, 20, 15], 25)) False 

Important: Make sure that you return either the boolean literal True or the boolean literal False. Do notinclude quotes around these values.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!