16 Oct
2002
16 Oct
'02
11:23 a.m.
Dapo Ladimeji wrote:
"calculate compound interest """" i= interest_rate / periods n= periods * years return ((1+i)**n) * principal"
Try the following instead: """ calculate compound interest """ i = interest_rate / periods n = periods * years return ((1+i)**n) * principal cheers, Chris