我需要按百分比表示每月付款,所以我需要 range = [0.04, 0.05, 0.06, 0.07, 0.08] 而不是 range = [4, 5, 6, 7, 8]
你知道怎么做吗,仍然从totalPayment中得到计算
import math
loanAmt=int(input("Enter the Amount (greater then 0) of the Loan: "))
numYears=int(input("Enter the number of years as an integer: "))
for monthlyRate in range(4,9):
monthlyPayment = loanAmt * monthlyRate / (1 - math.pow(1 / (1 + monthlyRate), numYears * 12))
totalPayment = monthlyPayment * numYears * 12
print("{0:.0f}%".format(monthlyRate),'\t','$%.2f' %monthlyPayment,'\t','\t','$%.2f' %totalPayment)