for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
"""Actualizaciones financieras.
Traer una cantidad de dinero del futuro a un tipo de interes dado."""
def actualizar_cantidad(amount, rate, pediods):
The coding style of this project requires that you add a docstring to this code element. Below, you find an example for methods:
class SomeClass: def some_method(self): """Do x and return foo."""
If you would like to know more about docstrings, we recommend to read PEP-257: Docstring Conventions.
return amount / (1 + rate)**pediods
def actualizar_renta(installment, rate, periods):
amount = 0
for i in range(1, periods+1):
amount += actualizar_cantidad(installment, rate, i)
return amount
def actualizar_renta_perpetua(installment, rate):
return installment / rate
The coding style of this project requires that you add a docstring to this code element. Below, you find an example for methods:
If you would like to know more about docstrings, we recommend to read PEP-257: Docstring Conventions.