python get the largest number in a list code example
Example 1: Write a function that returns the largest element in a list
def return_largest_element(array):
largest = 0
for x in range(0, len(array)):
if(array[x] > largest):
largest = array[x]
return largest
Example 2: python how to find the highest even in a list
def highest_even(li):
evens = []
for item in li:
if item % 2 == 0:
evens.append(item)
return max(evens)
print(highest_even([10,2,3,4,8,11]))
# Building a function to find the highest even number in a list
Example 3: find the largest size in a list - python
longest_string = len(max(a_list, key=len))