Is there any easy way or function to determine the greatest number in a python list? I could just code it, as I only have three numbers, however it would make the code a lot
What about max()
max()
highest = max(1, 2, 3) # or max([1, 2, 3]) for lists