my_list = [5, 2, -5, 10, 23, -21] def max_int_in_list(my_list): highest=my_list[0] for num in my_list: if num > highest: highest = num