DAY 19: 100Days of Python
#DAY 19 100Days of Python
amount = 75000
percentage_interest = 0.79
for i in range (10):
amount += (amount*percentage_interest)
print("Year", i+1, "is",round(amount,2))
#DAY 19 100Days of Python
amount = 75000
percentage_interest = 0.79
for i in range (10):
amount += (amount*percentage_interest)
print("Year", i+1, "is",round(amount,2))