Внутри этого кода вы можете видеть, что я создаю систему, в которой при проверке кредитного рейтинга пользователей изменяется базовая цена недвижимости. Очевидно, что я не могу внедрить цены со скидкой, потому что не могу создать заявление для тех, кто имеет кредит от 670 до 850. Пожалуйста, дайте предложения.
# Prompt section for customer
credit_check = '''The listing of this property is currently at $1,000,000.
In order to continue you must participate in a credit check that will evaluate your options of payment.'''
print(credit_check)
answer = input('Would you like to continue on to the credit check?(yes or no) ')
# Results of Prompt
if answer == "yes":
credit = input('Please enter your credit score ranging 300 through 850: ')
elif answer == "no":
print('''Unfortunately we can not serve you unless you provide a credit check
,thank you.
Chandlers Estate Co.''')
# This is the piece of code that I'm stuck on.
if int(credit) == :
print("hi")