# c05ex12.py
# Future value with formatted table.
def main():
print("This program calculates the future value of an investment.")
print()
principal = float(input("Enter the initial principal: "))
apr = float(input("Enter the annualized interest rate: "))
years = int(input("Enter the number of years: "))
print("Year Value")
print("--------------")
for i in range(years+1):
print("{0:3} ${1:7.2f}".format(i, principal))
principal = principal * (1 + apr)
main()
c05ex12.py
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 原文: http://zengrong.net/post/2192.htm 本站文章除注明转载外,均为本站原创或...
- 转载请注明出处。 一、简介:1、相比于第一个例程,在程序上做了优化,将特定功能以函数进行封装,独立可能修改的变量,...
- 命令行工具 django-admin.py & manage.pydjango-admin.py 是Django的...
- 若A.py和B.py位于不同的目录下,可以用以下方法 (假设B.py位于D盘的根目录下) 1.引用所在路径 imp...