我是PYTHON初学者程序员而且我正在编写一些代码,但是它没有用...你能帮我找到我的错误并纠正它吗?
到目前为止,这是我的代码:
balance=int(raw_input("Enter the outstanding balance on your credit card: "))
annualInterestRate=float(raw_input("Enter the annual credit card interest rate as a decimal: "))
monthlyPaymentRate=float(raw_input("Enter the monthly payment rate as a decimal"))
monthInterestRate = annualInterestRate / 12
monthlyPayment = monthlyPaymentRate*balance
newBalance= (balance-monthlyPayment) * (1 + monthInterestRate) #newBalance is updated balance
month=0
while month<12:
month += 1
monthlyPayment = (monthlyPaymentRate*balance)
newBalance=(balance-monthlyPayment)*(1 + monthInterestRate)
newBalance = balance
print("Month: " + str(month))
print("Minimum monthly payment: " + str(monthlyPayment))
print("Remaining balance: " + str(newBalance))
答案 0 :(得分:1)
猜测时,问题是newBalance = balance
,它会丢弃您在前一行上继续进行的计算,并将其替换为原始余额。但是,当你没有说出你所看到的“错误”时,很难确定。
答案 1 :(得分:0)
balance = int(raw_input("Enter the outstanding balance on your credit card: "))
annualInterestRate = float(raw_input("Enter the annual credit card interest rate as a decimal: "))
monthlyPaymentRate = float(raw_input("Enter the monthly payment rate as a decimal: "))
month = 0
while month<12:
monthlyPayment = (monthlyPaymentRate)*(balance)
unpaidBalance = (balance)-(monthlyPayment)
interest = ((annualInterestRate)/(12.0)) *(unpaidBalance)
updatedBalance = (unpaidBalance)+(interest)
month +=1
balance = updatedBalance
print ('Month: '+ str(month))
print ('Minimum monthly payment:' + str(round(monthlyPayment,2)))
print ('Remaining Balance after one year: ' + str(round(updatedBalance,2)))