how to find max of a list in python code example
Example 1: return the biggest even fro a list python
b=[10,30,40,88,77,99,12515,365,959,48,8595,95,9,59,59,5,9,9,49,5,548485844842]
def is_even(lis) :
i=len(lis)-1
lis.sort()
while max(lis)%2!=0:
i=i-1
if lis[i]%2==0:
break
return lis[i]
print(is_even(b))
Example 2: python list max value
#!/usr/bin/python
list1, list2 = [123, 'xyz', 'zara', 'abc'], [456, 700, 200]
print "Max value element : ", max(list1)
print "Max value element : ", max(list2)