How To Calculate Compund Interest
#TO CALCULATE COMPOUND INTEREST
print('COMPOUND INTEREST')
p=int(input('Enter Principal = '))
r=int(input('Enter Rate of Interest = '))
t=int(input('Enter Time Period (in yrs)= '))
ci=p*(1+r/100)**t-p
print ('The Compound Interest = ',ci)
Made By :-
Nilay Saraf
Comments
Post a Comment