python largest value in list code example

Example 1: python largest value in list

>>> list = [1, 3, 2, 0]
>>> max(list)
3

Example 2: 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 3: max int in a python list

>>> L=[2,-7,3,3,6,2,5]
>>> max(L)
6

Example 4: find the largest size in a list - python

longest_string = len(max(a_list, key=len))

Example 5: max of a list in python

#!/usr/bin/python

list1, list2 = [123, 'xyz', 'zara', 'abc'], [456, 700, 200]
print "Max value element : ", max(list1)
print "Max value element : ", max(list2)