0

我在使用附加功能将帐户添加到映射时遇到问题。

mapp = ["example"]

example1 = raw_input("Enter Username: ")
if example1 in mapp:
    print "yay"
else:
    print ("Forgot Username eh?")
    example = raw_input("Enter New Username: ")
    if example not in mapp:
        mapp.append(sana)

从脚本中可以看出,如果我输入用户名“example”,程序会打印“yay”。如果我输入错误,我可以创建新的“帐户”,下次我希望我的程序打印“耶”时可以使用它。但是当我尝试添加新的“帐户”时它不起作用。我没有收到任何错误消息或任何东西,但它只是没有向 mapp 添加新的“帐户”。那么有什么想法吗?

4

1 回答 1

3

您没有将正确的变量附加到mapp; 您正在追加sana,但您应该追加example

if example not in mapp:
    mapp.append(example)

对于这个用例,您可以使用 aset代替:

mapp = {'example'}

# ...
if example1 in mapp:
    # ...
else:
    # ... 
    example = raw_input("Enter New Username: ")
    mapp.add(example)
于 2013-01-28T15:13:57.470 回答