初识Python
看了一点Python的知识点,写了一段代码来加深理解:
# -*- coding:cp936 -*-
print (‘此计算器为理想状态下基金定投的收益计算‘)
print (‘计算公式:M=12a(1+x)[-1+(1+x)^n]/x‘)
print (‘M:预期收益‘)
print (‘a:每月定投金额‘)
print (‘x:一年收益率‘)
print (‘n:定投期数(公式中为n次方)‘)
a = float(raw_input(‘计划月定投金额:‘))
n = float(raw_input(‘计划投资年限:‘))
x = float(raw_input(‘预期年收益率(%):‘))
M = 12 * a * (1 + x/100) * (-1 + (1 + x/100) ** n) / (x/100)
print (‘\n投资年限到期本金收益和:‘ + format(M,‘.2f‘))
N = M - 12 * a * n
print (‘投资年限到期总收益:‘ + format(N,‘.2f‘))
P = N /(M - N)
print (‘资产增加率:‘ + format(P,‘.2%‘))
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。