Answers for "write a function to return the maximum and minimum value in the list python"

1

finding the maximum value in a list python

arr = [0, 1, 2, 3]
maximum_value = max(arr)
print(maximum_value) #should print 3
Posted by: Guest on August-09-2021
1

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

Code answers related to "write a function to return the maximum and minimum value in the list python"

Python Answers by Framework

Browse Popular Code Answers by Language