largest number python code example

Example 1: 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 2: Largest number python

# This program will find out the greater number in the arguments

def larger_number(x, y):
    if x > y:
        print(x, "is greater")
    else:
        print(y, 'is greater')

larger_number(12, 31)

Example 3: how to write program in python to get the largest nuber

def max_num_in_list( list ):
    max = list[ 0 ]
    for a in list:
        if a > max:
            max = a
    return max
print(max_num_in_list([1, 2, -8, 0]))