Python 程序用于计算单利
在本文中,我们将学习在 Python 3.x 或更早版本中计算单利。
单利是将日利率乘以本金,再乘以付款之间的天数来计算的。
在数学中,
Simple Interest = (P x T x R)/100 Where, P is the principal amount T is the time and R is the rate
例如,
If P = 1000,R = 1,T = 2 Then SI=20.0 Now let’s see how we can implement a simple interest calculator in Python.
示例
P = 1000 R = 1 T = 2 # simple interest SI = (P * R * T) / 100 print("simple interest is", SI)
输出
simple interest is 20.0
这里的单利是通过三个算术乘积和一个算术除法获得的。
现在让我们看看声明的变量的作用域。如下面的图表所示,所有变量均声明为 全局作用域。
结论
在本文中,我们学习了单利及其使用 Python 脚本实现的内容。
广告