当前分类:300例题>>正文

Python示例:计算单利

来源:互联网   更新时间:2023年6月18日  

Python 示例

用例子写一个计算简单利息的 Python示例。在我们进入示例之前,让我向您展示简单利息计算背后的公式:

单利=(本金利率年数)/ 100

计算单利的 Python示例

这个 Python示例允许用户输入本金金额、投资回报率和年数。通过使用这些值,程序使用上述公式计算简单利息。

princ_amount = float(input(" Please Enter the Principal Amount : "))
rate_of_int = float(input(" Please Enter the Rate Of Interest   : "))
time_period = float(input(" Please Enter Time period in Years   : "))

simple_interest = (princ_amount * rate_of_int * time_period) / 100

print("\nSimple Interest for Principal Amount {0} = {1}".format(princ_amount, simple_interest))

本文固定链接:https://6yhj.com/leku-p-4283.html  版权所有,转载请保留本地址!
[猜你喜欢]

标签: python基础