#!/usr/bin/env python # list of numbers my_list = [12, 33, 5, 3, 199] # find the maximum value in a list of numbers max_value = max(my_list) print max_value # find the index position of that value max_index = my_list.index(max_value) print max_index # find the minimum value in a list of numbers min_value = min(my_list) print min_value # find the index position of that value min_index = my_list.index(min_value) print min_index