![]() |
Python
1.0
|
Interest rates. More...
Functions | |
def | interest_rate (c, f, n) |
Calculates the interest rate of a compounding interest. More... | |
def | continuous_interest_rate (c, f, n) |
Calculates the interest rate of a continuous compounding interest. More... | |
def | interest (c, f, n) |
Calculates the interest rate of a compounding interest and a continuous compounding interest. More... | |
def | main () |
Interest rates.
def _02e_interest.continuous_interest_rate | ( | c, | |
f, | |||
n | |||
) |
Calculates the interest rate of a continuous compounding interest.
c | initial capital. |
f | final capital. |
n | number of periods. |
Referenced by interest().
def _02e_interest.interest | ( | c, | |
f, | |||
n | |||
) |
Calculates the interest rate of a compounding interest and a continuous compounding interest.
c | initial capital. |
f | final capital. |
n | number of periods. |
References continuous_interest_rate(), and interest_rate().
Referenced by main().
def _02e_interest.interest_rate | ( | c, | |
f, | |||
n | |||
) |
Calculates the interest rate of a compounding interest.
c | initial capital. |
f | final capital. |
n | number of periods. |
Referenced by interest().
def _02e_interest.main | ( | ) |
References _01d_dec2bin.input, and interest().