I'm writing a python program that will search for a password that is the first piece in a string. I'm using raw_input() to do it, and here's what the code is like
list = ['Nether\n']
password = list[0]
print password
if raw_input('Please Enter Password: ') == password:
print "Successful"
This code will print 'Nether' with a line after it (it's supposed to be like that), but when I put it into the raw_input() statement, it doesn't accept the password. Please note this is a simplified version of the code but it is the area where the bug is originating, I can post the whole thing if necessary.