for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
"""Tipos module."""
from .. import MENSUAL, SEMESTRAL, CUATRIMESTRAL, TRIMESTRAL
def interes_mensual_simple(rate):
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 rate / MENSUAL
def interes_semestral_simple(rate):
return rate / SEMESTRAL
def interes_cuatrimestral_simple(rate):
return rate / CUATRIMESTRAL
def interes_trimestral_simple(rate):
return rate / TRIMESTRAL
def interes_anual_simple(rate, temp_mode):
return rate * temp_mode
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.