Python用复利计算投资收益
时间: 2024-04-16 09:22:29 浏览: 309
复利计算器
Python可以用来进行复利计算投资收益的计算。复利是指在每个计息周期结束后,将利息加入本金,下一个计息周期的利息就会基于新的本金计算。以下是一个简单的Python代码示例,用于计算复利投资的收益:
```python
def compound_interest(principal, rate, time):
# 计算复利投资的收益
amount = principal * (1 + rate) ** time
interest = amount - principal
return interest
# 示例:假设本金为1000,年利率为5%,投资时间为3年
principal = 1000
rate = 0.05
time = 3
interest = compound_interest(principal, rate, time)
print("投资收益为:", interest)
```
这段代码定义了一个名为`compound_interest`的函数,它接受三个参数:本金(`principal`)、年利率(`rate`)和投资时间(`time`)。函数内部使用复利公式计算投资收益,并返回收益值。
在示例中,假设本金为1000,年利率为5%,投资时间为3年。通过调用`compound_interest`函数,可以得到投资收益并打印输出。
阅读全文