Analicemos antes la fórmula del interés compuesto. La fórmula para calcular el interés compuesto anual viene dada por:
A = P(1 + R/100) t Compound Interest = A - P
Donde,
A es la cantidad
P es la cantidad principal
R es la tasa y
T es el lapso de tiempo
Python3
# Python3 program to find compound # interest for given values. def compound_interest(principle, rate, time): # Calculates compound interest Amount = principle * (pow((1 + rate / 100), time)) CI = Amount - principle print("Compound interest is", CI) # Driver Code compound_interest(10000, 10.25, 5)
Python3
# Python code # To find compound interest # inputs p= 1200 # principle amount t= 2 # time r= 5.4 # rate # calculates the compound interest a=p*(1+(r/100))**t # formula for calculating amount ci=a-p # compound interest = amount - principal amount # printing compound interest value print(ci)
Publicación traducida automáticamente
Artículo escrito por GeeksforGeeks-1 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA