>>> lis_num = [1, 3, 2, 0]
>>> max(lis_num)
3
# Python program to find largest
# number in a list
# list of numbers
list1 = [10, 20, 4, 45, 99]
# sorting the list
list1.sort()
# printing the last element
print("Largest element is:", list1[-1])
num = [1,2,3,4,5]
print(max(num))
numbers = [1, 5, 2, 10, 9, 3, 5]
print(max(numbers))
list_of_numbers = [1, 3, 2, 0]
max(list_of_numbers)
how to find the highest int in the list and print it