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:")