# create a list by asking the user to put in strings # tell him to just hit enter to end # print resulting list. print("Enter strings to make a list; just hit enter to quit") user_list = [] user_input = "foo" while(user_input): user_input = input("Enter a string or ENTER to quit: ") user_list.append(user_input) print(user_list)