Answers for "max liste python"

1

python index max list

number_list = [1, 2, 3]
max_value = max(number_list)
# Return the max value of the list
max_index = number_list.index(max_value)
# Find the index of the max value
print(max_index)
Posted by: Guest on April-05-2021
3

max in a list python

li=[0,70,7,89]
max(li)
#gives the max value 89
Posted by: Guest on September-12-2020

Python Answers by Framework

Browse Popular Code Answers by Language