关于银行的定期存款与某些万能保险的收益比较
22/10/12 因为很多保险从业人员在推销保险的时候总是夸大收益, 并且制造焦虑. 但是其实保险的收益率很低, 特别是那些理财性质的保险. 因为资金在具有流动性的时候是复利的, 一旦复利那么就是不得了的存在.
以某银行目前的一年期2.1%, 二年期2.65%, 三年期3.25%的年化收益存款做比较, 可以看到如下的结果.
```python
#22/10/12 fixed term deposit
rateOfInterest1Year=2.1/100
rateOfInterest2Year=2.65/100
rateOfInterest3Year=3.25/100
totalRevenue=1.0
totalPeriod=6
unit=1.0
TimeEnd= int(totalPeriod/unit)+1
for i in range(1, TimeEnd):
print(f"Year({i*unit})=", end='')
totalRevenue = (1.0+rateOfInterest1Year)**i
totalRevenue -=1.0
totalRevenue *= unit
print(f"{totalRevenue*100}%") # 这个是6个复利后最后年末的实际收益, 能够达到13.2%
```
Year(1.0)=2.0999999999999908%
Year(2.0)=4.244099999999973%
Year(3.0)=6.433226099999967%
Year(4.0)=8.668323848099968%
Year(5.0)=10.950358648910052%
Year(6.0)=13.280316180537156%
```python
unit=2.0
TimeEnd= int(totalPeriod/unit)+1
for i in range(1, TimeEnd):
print(f"Year({i*unit})=", end='')
totalRevenue = (1.0+rateOfInterest2Year)**i
totalRevenue -=1.0
totalRevenue *= unit
print(f"{totalRevenue*100}%") # 这个是3个复利最后年末的实际收益, 能够达到16%
```
Year(2.0)=5.299999999999994%
Year(4.0)=10.74044999999999%
Year(6.0)=16.325071924999968%
```python
unit=3.0
TimeEnd= int(totalPeriod/unit)+1
for i in range(1, TimeEnd):
print(f"Year({i*unit})=", end='')
totalRevenue = (1.0+rateOfInterest3Year)**i
totalRevenue -=1.0
totalRevenue *= unit
print(f"{totalRevenue*100}%") # 这个是3个复利最后年末的实际收益, 能够达到19.8%
```
Year(3.0)=9.749999999999993%
Year(6.0)=19.81687499999998%
```python
```
在6年的计算里面, 存款实际可以达到 19.8% 但是很多需要连续缴纳5年的然后在第六年才开始有收益的保险宣称后续有年化3.5%的收益, 但是相比较差距是巨大的.
希望大家自己购买的时候计算一下, 是否真的符合自己的目标.
标签:1.0,万能,Year,print,100,定期存款,保险,totalRevenue,unit From: https://www.cnblogs.com/bibaodi/p/16786078.html