Otherwise, anything you type, (string, integer, character, etc) will be # appended to the empty list with .append(item) while True: item = input('Please enter an item for your list or press enter to stop.\n') if item is not '': spam.append(item) else: break # Once the ...