diff --git a/compound_interest.py b/compound_interest.py index 9673a7a029..94c89d4868 100755 --- a/compound_interest.py +++ b/compound_interest.py @@ -11,6 +11,7 @@ # Output: # compound interest = p * (1 + r/100)^t +# Aquí hay una nueva actualización por mastercalvo def compound_interest(p, t, r): return p * (pow((1 + r / 100), t))