ComenzarEmpieza gratis

Calculating future value

Calculating future value is an important step in building up to bond pricing as the process of pricing a bond is actually calculating future value in reverse. Here you will find the future value of an investment using the npf.fv() formula from earlier.

Este ejercicio forma parte del curso

Bond Valuation and Analysis in Python

Ver curso

Instrucciones del ejercicio

  • Import the numpy_financial package using the alias npf.
  • Calculate the future value of an investment of USD 10,000 with top-ups of USD 5,000 each year for 30 years earning 5% annual interest and assign the result to savings.
  • Print the result.

Ejercicio interactivo práctico

Prueba este ejercicio y completa el código de muestra.

# Import numpy_financial package using the alias npf
____

# Calculate the future value of an investment
savings = npf.fv(rate=____, nper=____, pmt=____, pv=____)

# Print the result
____
Editar y ejecutar código