网上查找了好久没有找到公积金结息计算器,所以自己用python写个脚本来实现
# 去年6月30日公积金余额
count = float(10000)
l = 0.015
# 月缴存额
y = float(700)
j = count * l
print("基础利息:{}".format(j))
x = 0
for i in range(1,13):
x = (l * y) / 12 * i
j += x
# print("第{}月:{}".format(i, x))
print("总利息:{}".format(j))
标签:脚本,count,format,float,公积金,结息,print From: https://www.cnblogs.com/MerlinBK/p/17525604.html