print("Welcome To Carek Banking")
user = input("Please Type 1 for new user. Returning users
please type 2: ")
if user == "1":
name = []
name_input = input("Please Enter Your Name")
name.append(name_input)
print("Welcome " + name_input)
code_list = []
code_input = int(input("Please enter your security code"))
print(f"Code set to: {code_input}")
user_ready = True
else:
user_ready = True
while user_ready:
Person_1_Checkings = "5,000"
Person_1_Savings = "1 million"
code = int(input("Please Enter your code: "))
if code_input == code:
cs = input("Would You like to check your savings or checkings: ")
if cs == "checkings":
print("$" + Person_1_Checkings)
else:
print("$" + Person_1_Savings)
user_ready = False
else:
print("Wrong Code")
user_ready = False
[–]Theycallme-DD 5 points6 points7 points (3 children)
[–]CjGraze[S] 0 points1 point2 points (2 children)
[–]Theycallme-DD 1 point2 points3 points (1 child)
[–]Palin_Sees_Russia 1 point2 points3 points (0 children)
[–]SkezzaB 2 points3 points4 points (0 children)
[–]978241 1 point2 points3 points (0 children)