I want to ask the user for a message and then to store it to a variable x
.
So
x = input("Insert a message")
but then I want the program to allow the user to write on the next line. The program should then store each line as a separate message.
Is there a way to make python create an infinite number of variables as necessary.
or do I have to put the messages into a string then strip it into a list.