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.
Its answer D because I took the same test and it told me that my answer was right that I put down and it was D.
I'm going to say a chart. I could be wrong. If the chart didn't have text with it- how do you know what the chart is for?
A map, it needs text, but these days people just use GPS's.
Answer:
Do the tasks on the side or if there are multiple of a question then take the answers from one that is already completed and use it on the other similar answer
Explanation: