python計算貸款購房月供、利息
def monthlyPayment(principal, year_rate, year_duration):
monthly_rate = year_rate / (12 * 100) # convert 4.9 to 0.049 and monthly interest rate
month_amounts = year_duration * 12
# 每月月供
monthly_payment = (principal * monthly_rate * (1 + monthly_rate) ** month_amounts) / (
(1 + monthly_rate) ** month_amounts - 1)
#總利息
total_interest_payable = monthly_payment * month_amounts - principal
print('-----------------------------------')
print ('Total interest payable is %.2f ' % total_interest_payable)
for i in range (1, month_amounts + 1):
#每月應還利息
monthly_interest_payable = principal * monthly_rate * ((1 + monthly_rate) ** month_amounts - (1 + monthly_rate) ** (i - 1 ))/ ((1 + monthly_rate) ** month_amounts -1)
#每月應還本金
monthly_principal_payable = principal * monthly_rate * (1 + monthly_rate) ** (i - 1)/ ((1 + monthly_rate) ** month_amounts -1)
#每月利息佔比
monthly_interest_percentage = monthly_interest_payable * 100 / monthly_payment
print('-----------------------------------')
print ('%dth monthly payment is : %.2f (Interest: %.2f and Principal: %.2f)' % (i, monthly_payment,monthly_interest_payable,monthly_principal_payable))
print('%dth month interest percentage is %.2f %%' % (i,monthly_interest_percentage))
return
if __name__ == '__main__':
principal = int(input('Please input your loan amounts:'))
year_rate = float(input('Please input Year Debt Interest Rate:(such as 4.9,it means 4.9%)'))
year_duration = int(input('Please input Debt Year Duration:'))
monthlyPayment(principal, year_rate, year_duration)
相關文章
- python——設計一個簡單的購房商貸月供計算器Python
- 純js版本房貸計算器JS
- 還在頭疼每月房貸還款?這個房貸計算機讓你一目瞭然計算機
- Loan Calc for Mac計算房貸軟體Mac
- 二手房、金融貸款微站
- 按揭貸款的計算原理與java實現Java
- Python計算商品復購率Python
- 貸款借錢平臺 貸款原始碼 小額貸款系統 卡卡貸原始碼 小額貸款原始碼 貸款平臺開發搭建原始碼
- 而且還可能在買房和貸款上享受更加優惠的政策。
- 最課程階段大作業02:實現自己的利息計算器
- 網貸天眼:2018年8月網貸平臺貸款餘額規模TOP100排行榜
- 鄭州擬調整公積金貸款政策:首套住房最高貸款70%HGR
- 奉啟玉觀察,為何早半年買房月供多千元?
- 一個月被罰兩次,寧波銀行貸款管理堪憂
- 大廠的供應鏈採購系統設計
- 選不選LPR?房貸利率“換錨”期限將至RTB
- 網貸之家:2018年5月P2P網貸行業月報行業
- python 計算 sin 值Python
- 如何獲得【房間面積計算】的配置資訊
- JavaScript 購物車自動計算價格JavaScript
- 【轉】:上海將限制外地人購房 分析認為可抑制炒房
- python簡易計算器Python
- python雲端計算1Python
- python計算對數值Python
- python 計算list的方差Python
- Python版中秋佳節月餅搶購指令碼Python指令碼
- [python] Python平行計算庫Joblib使用指北Python
- 2022年廣州購房意願調查
- JS-計算日期差值;計算日期之間的月數JS
- 購物車自動計算商品總價格
- 獨家!哈囉擬收購網路小貸牌照
- 上海易居房地產研究院:中國LPR房貸利率報告
- 雲端計算前景如何?推薦4個雲端計算職業方向供你參考
- 中國人民銀行:2022年小額貸款公司統計資料包告
- python系列--計算異或和Python
- 貸款違約預測專案-資料分箱
- 公積金貸款流程 - 杭州市為例
- 用python和計算機對話(計算機的語句)Python計算機