关于如何在一段时间内存储用户输入:如何将用户输入存储在while循环中? (蟒蛇)

How can I store the user input in a while - loop? (python)

社区,

我是一个关于python的总菜鸟,我想用程序创建一个小名字统计。
我的代码(我使用的是python 3.4.0):

1
2
3
4
5
while True:
    eingabe = input ('Please enter a name: ')
    print (eingabe)
    if eingabe == '':
        break

所以现在我想将用户输入存储在列表中。 我怎样才能做到这一点?

亲切的问候,
丽莎


只需定义list,然后使用.append()为其添加新值。

1
2
3
4
5
6
7
8
names = []  # Here we define an empty list.
while True:
    eingabe = input('Please enter a name: ')
    if not eingabe:
        break

    names.append(eingabe)
    print(eingabe)