I am trying to create a loop for python to create a variable of different input values.
I want to input 3 different words into the name variable. This is my code:
name = raw_input("What is your name? ")
if len(name) > 0:
print name
I want to repeat the action from the input till I stop input.