This is the code
start = input("Would you like to encrypt(1) or decrypt(2) your password?: ")
if start == "encrypt" or "1":
print("Enter the password you want to encrypt: ")
elif start == "decrypt" or "2":
print("Enter the password you want to decrypt: ")
However, when I type "decrypt" or "2" it won't print the message below, it only prints the first message? What am I doing wrong?