标签: python python-3.x
我希望我的程序将用户输入附加到列表,直到给出特殊输入。
我已经用while循环尝试了它,但它没有那样工作。
in2 = [] while in1 != "END" : in1 = input("Enter: ") in2.append(in1)