-1

我需要按百分比表示每月付款,所以我需要 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)
4

2 回答 2

2

你可以使用这个:

for monthlyRate in (x/100.0 for x in range(4,9)):
    print monthlyRate

0.04
0.05
0.06
0.07
0.08
于 2013-02-11T02:37:45.337 回答
0

或者您也可以使用列表推导

percent_rate = [rate/100.0 for rate in monthly_rate]
# where monthly_rate is the list of all ints like [4, 5, 6, 7, 8]
于 2013-02-11T02:45:39.160 回答