Open Source Your Knowledge, Become a Contributor
Technology knowledge has to be shared and made accessible for free. Join the movement.
Different Python Programs!
Collection of Python Programs to program compound interest using Python
1
2
3
4
5
6
7
8
#Given Values
def compound_interest(principle, rate, time):
#Code to calculate compound interest
CIn = principle *(pow((1+rate/100), time))
print("Compound interest is",CIn)
# Code for Drive
compound_interest(1200,5.25,6)
Enter to Rename, Shift+Enter to Preview
Open Source Your Knowledge: become a Contributor and help others learn. Create New Content