Write a Python program to compute the future value of a specified principal amount, rate of interest, and number of years.

Write a Python program to compute the future value of a specified principal amount, rate of interest, and number of years.

1
2
3
4
5
amt = 10000
int = 3.5
years = 7
future_value = amt*((1+(0.01*int)) ** years)
print(round(future_value,2))

Final output

Leave a Comment