Okay so I i'm just messing around with some code trying to learn on my own.
Anyways, I'm trying to do like a mock password thing just using strings and integers.
I have it setup so that it asks for what you want your "password" to be, and then it will ask for the password again. I want it to say "Great" when it was right, and "Wrong Try Again!" is it is wrong, but for some reason when I type in the password correctly, it will still do the else statement and the output would be
Welcome,
What would you like your password to be?
<insert password>
What was your password?
<insert previously inserted password>
Great!
Wrong Try Again!
What can I do to keep the statement from falling through?