python日计复利
时间: 2023-11-15 18:01:50 浏览: 106
一个资产复利计算器python源码
Python可以用来计算复利。复利是指在一定时间内,本金和利息再次计算利息的过程。Python程序可以根据给定的原理量、速率和时间来计算复利。下面是一个Python程序示例,可以计算复利:
```python
# Python程序找到复利 (Python program to find compound interest)
p = float(input("Enter the principle amount : "))
r = float(input("Enter the rate of interest : "))
t = float(input("Enter the time in the years: "))
# 计算复利
ci = p * (pow((1 + r / 100), t))
# 打印结果
print("Principle amount : ", p)
print("Interest rate : ", r)
print("Time in years : ", t)
print("Compound Interest : ", ci)
```
在这个程序中,用户需要输入原理量、速率和时间。程序会使用这些值来计算复利,并将结果打印出来。
阅读全文