Answers for "how to get the max number from a list in python"

0

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)
Posted by: Guest on August-29-2020

Code answers related to "how to get the max number from a list in python"

Python Answers by Framework

Browse Popular Code Answers by Language