I would like the program to ask the user for the password if the password wasnt correct. How do I do it?
#program that saves user passwords
user_input = ""
FB = input("what is your facebook pasword \n")
print("your facebook passoerd is " + FB + " is this correct?")
user_input = input()
if (user_input == "yes"):
print("password has been saved")
elif user_input == "no":
print("password was not saved")
else:
print("i do not understand. sorry")