If you are tryin to ouytput the values in the dictionary you have to enter the name you assigned it, say: dict = {} name = 'joe' number = '123' name2 = 'steve' number2 = '456' list = [name, number] list2 = [name2, number2] Now you have two lists and two different values to put into the dict. dict['j...