Answers for "find max from a list python"

10

python index of max value in list

# any list
a = [1, 7, 3, 12, 5]

# index of minimum element
# if more than 1 minimum, 
# first index is returned
min_index = a.index(min(a))

# index of maximum element
max_index = a.index(max(a))
Posted by: Guest on May-03-2020
2

min and max number in list python

def Max_min(list_of_number):
    largest_number = 0
    smallest_number = 0
    for num in list_of_number:
        if num > largest_number:
            largest_number = num
        elif num < smallest_number:
            smallest_number = num
    return "Largest number ="+ str(largest_number) + "Smallest Number="+str(smallest_number)
Posted by: Guest on June-25-2021
5

find max value in list python

mylist = [1, 7, 3, 12, 5]

min_value = min(mylist)
max_value = max(mylist)
Posted by: Guest on April-22-2021

Code answers related to "find max from a list python"

Python Answers by Framework

Browse Popular Code Answers by Language