1500字范文,内容丰富有趣,写作好帮手!
1500字范文 > python计算存款复利计算器_复利计算器循环

python计算存款复利计算器_复利计算器循环

时间:2023-12-15 02:21:28

相关推荐

python计算存款复利计算器_复利计算器循环

下面是我到目前为止的代码和我得到的错误。我试过玩,但很明显我不明白循环应该如何工作

我正在尝试循环,这样错误的输入,即字母顺序和低于1000英镑的输入会导致错误和重新输入问题。我有它的大部分工作,但它循环到初始问题不是错误问题的字母输入,但给出错误信息,然后继续使用数字,但低于1000英镑。在print ("Welcome to Trustees Investment Bank Compoud Interest Calculator") #Title

print ("Interest is calculated at 3.15% per annum")

while True:

try:

deposit2 = float(input("\nEnter initial deposit above £1000? ")) # Initial deposit amount

rate = 0.0315 # interest rate

if deposit2<1000:

deposit2 = float(input("\nEnter initial deposit above £1000? ")) #loop

except ValueError:

continue

else:

break

for year in range(1,9):

amount = deposit2 * (1.0 + rate) ** year

print ("%4d%21.2f" % (year, amount))

这是我的输出

^{pr2}$

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。