get highest integer in a list python code example
Example 1: max int in a python list
>>> L=[2,-7,3,3,6,2,5]
>>> max(L)
6
Example 2: how to find the highest int in the list and print it
how to find the highest int in the list and print it
>>> L=[2,-7,3,3,6,2,5]
>>> max(L)
6
how to find the highest int in the list and print it