I apologize ahead of time for my ignorance but I have trying to code something in python that requires a question to be asked to the user and the user responds. Dependent on that response, the program should print a response and repeat the question until the correct answer is provided. I'm using Python 3.4.3
print("Enter Password")
password = input("Enter Password: ")
if password == 'Hello':print("Enter Name")
else:print("Wrong Password")name = input("Type your name, please: ")
What's happening is even if I don't put in "hello", it continues and doesn't re-ask the question and prints wrong password and then goes to type your name please.... What am I missing? Please and thank you and again I'm sorry, I'm extremely new to this.