max from list in python code example
Example 1: max of list with index
a.index(max(a))
Example 2: max in a list python
li=[0,70,7,89]
max(li)
#gives the max value 89
a.index(max(a))
li=[0,70,7,89]
max(li)
#gives the max value 89