Apr-11-2020, 08:52 PM
print("If your credit score is good type G")
print("if your credit score is bad type B")
credit_score = input("Please enter your credit score now")
if credit_score in ['g','G']:
print("Your down payment is .1 million")
elif credit_score in ['b','B']:
print("Your down payment is .2 million")I am trying to write a program that outputs the downpayment for a house purchase based on whether a person's credit rating is good or not. I am getting the reply "Process finished with exit code 0".Please tell me what is wrong with my code.
