我正在尝试在 python 中制作任意用户名和密码程序我有一个字典,其中填充了一系列用户名和值我无法将用户输入与字典用户名和值进行比较。它们似乎不相等。
textFile = open('names.txt','r')
dictionary = {}
for lines in textFile:
splatLine=lines.split('\t')
dictionary[splatLine[3]]= splatLine[4]
print dictionary
userName= raw_input("what is your UserName:")
password= raw_input("what is your Password:")