0
我想用django來計算興趣。如何計算複合興趣並使用Django在瀏覽器中顯示它?
在我的模型:
class Account(models.Model): principal = models.DecimalField("pricipal", max_digits=15, decimal_places=6) rate = models.DecimalField("interest rate", max_digits=5, decimal_places=5) months = models.IntegerField("number of months", default=0)
我的目標是計算,每月利息。我需要遍歷每個月',將值寫入數據庫,並顯示錶結果
如何計算django中每個月的principal * rate *個月? 我如何在HTML表中的這些值?
謝謝你,讓我有我的Python腳本,我怎麼走來自模型的輸入,計算利息,然後將結果發佈到數據庫並在視圖中顯示攤銷計劃? – toddkovalsky