#!/usr/bin/python # create firstlist with no data list1 = [] # add items to list list1.append("Clinton") list1.append("Obama") list1.append("Edwards") list1.append("Kucinich") list1.append("Biden") # create second list with no data list2 = [] # add itemsto the list list2.append("Giuliani") list2.append("Romney") list2.append("Thompson") list2.append("McCain") list2.append("Paul") # add the items from the second list to the end of the first list list1.extend(list2) # sort the list list1.sort() # print the list for n in list1: print n