-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFuture Value.py
42 lines (40 loc) · 1.58 KB
/
Future Value.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
while True:
while True:
try:
amount = float(input('\nEnter amount as of today:'))
except ValueError:
print("\nPlease enter only number")
else:
break
while True:
try:
interest = float(input('\nEnter interest amount of every year:'))
except ValueError:
print("\nPlease enter only number")
else:
break
while True:
try:
years = float(input('\nEnter years:'))
except ValueError:
print("\nPlease enter only number")
else:
break
interest_rate=(amount/100)*interest
#amount_after_years=(interest_rate*years)+amount
amount_after_years= amount*((1+(0.01*interest))** years)
print("\nThe amount",amount,"after",years," years will be",str(amount_after_years))
while True:
Repeat=input("\nDo you want to calculate again?\n\nYes or No:")
Repeat=Repeat.lower()
if Repeat not in ["yes","y","no","n"]:
print("\nPlease select correct option")
else:
break
if Repeat in ["yes","y"]:
continue
else:
if Repeat in ["no","n"]:
print("\n-----Thank you for using-----")
input()
break