community,
I' m a total noob concerning python and I would like to create a little name-statistic with the program. my code (I am using python 3.4.0):
while True:
eingabe = input ('Please enter a name: ')
print (eingabe)
if eingabe == '':
break
so now I would like to store the user input in a list. How can I do this?
Kind regards, Lisa