I have this code:
afile = "name.txt"
f = open(afile,"r")
content = f.readlines()
f.close()
correct = content[1]
answer = raw_input()
if answer == correct:
print 'True'
Let say that, because of the name.txt, content[1] is George and then I run the code and I type George for answer. Why I won't get True? Why answer and correct are not the same?