It still doesn't work even with Elif statments
bank = 50000 password = "Heil" weapon_imports = ("3 RPGS, 30 AK47s, 12 Dragunov Snipers, 300lbs of C4 plastic explosive") admin_access = 0 access_id = 0 print("This is you're bank speaking. We need to make sure we have all of our clients updated information. I just need you to tell me a few things.") x = input("Enter you're credit card number") y = input("Enter you're cvv number") z = input("Enter you're expiry date") print("Thanks for you're time, have a nice day") if int(x) == 42069360 and int(y) == 334 and z == "22/6/2018": print ("Its ya boii".upper()) access_id = access_id+1 if access_id == 1: admin_access = 1 if admin_access == 1: print("Greetings, Admin. How can i help you today?") a = ("Nuclear Launch Codes") b = ("List of weapon imports") c = ("Withdrawl") d = ("Deposit") choice = input("Enter your choice: A,B,C or D:") if choice.lower() != "a" and choice.lower() != "b" and choice.lower() != "c" and choice.lower() != "d": if choice == a: launch_codes=input("Enter the password for the launch codes") elif launch_codes != password: print("Here are your launch codes for platform Thor. EWHBFDR9XZG") elif choice == b: print("Here are the list of weapon imports in the last week",weapon_imports) elif choice != c: withdrawl=input("How much would you like to withdrawl?") withdrawl = bank-withdrawl else: if choice != d: deposit=input("How much would you like to deposit") deposit = bank + deposit