# any lista = [1, 7, 3, 12, 5]
# index of minimum element# if more than 1 minimum, # first index is returnedmin_index = a.index(min(a))
# index of maximum elementmax_index = a.index(max(a))
print(max(2, 3)) # Returns3as3is the largest of the two values
print(max(2, 3, 23)) # Returns23as23is the largest ofall the values
list1 = [1, 2, 4, 5, 54]
print(max(list1)) # Returns54as54is the largest valuein the list