I guess your question is: is this a true statement?
and the answer is: no, this is not a true statement, it's false.
Opportunity cost is the most desirable alternative. For example if you can earn 100, 50 and 30 dollars, and you choose 100, then your opportunity cost is the 50 dollars you rejected
Technology makes America great by allowing us to become more connected with one another.
Answer:
- def getLargest(number_list):
- new_list = []
-
- for x in number_list:
- if(isinstance(x, int)):
- new_list.append(x)
-
- largest = max(new_list)
-
- return largest
Explanation:
Firstly, create a function <em>getLargest()</em> that take one input parameter, <em>number_list</em>.
The function will filter out the float type number from the list by using <em>isinstance() </em>method (Line 5). This method will check if a current x value is an integer. If so, the x value will be added to <em>new_list</em>.
Next, use Python built-in <em>max</em> function to get the largest integer from the <em>new_list </em>and return it as output.