所以我是一個初學者,我正試圖做一個簡單的抵押貸款計算器。這是我的代碼:基本抵押貸款計算器
L=input('Enter desired Loan amount: ')
I=input('Enter Interest Rate: ')
N=input('Enter time length of loan in months: ')
MonthlyPayments= [float(L)*float(I)*(1+float(I))*float(N)]/((1+float(I))*float(N)-1)
print('Your Monthly Payments will be {0:.2f}'.format(MonthlyPayments))`
,我也得到一個錯誤,指出:用於/不支持的操作數類型(S):名單'和 '浮動'
嗯該死謝謝。我不知道那個括號裏面有那個哈哈..... – thedonace213