Write a program of compound interest …
CBSE, JEE, NEET, CUET
Question Bank, Mock Tests, Exam Papers
NCERT Solutions, Sample Papers, Notes, Videos
Posted by Santosh Chandawat 6 years, 1 month ago
- 1 answers
Related Questions
Posted by Anchal Ratna 1 year, 6 months ago
- 1 answers
Posted by Samyak Jain 1 year, 4 months ago
- 0 answers
Posted by Jaspreet Sethi 1 year, 2 months ago
- 0 answers
Posted by Account Deleted 1 year, 6 months ago
- 1 answers
Posted by Gowri Menon .Menon 1 year, 2 months ago
- 0 answers
Posted by T Kumaran 1 year, 3 months ago
- 0 answers
Posted by Anshika Maurya 1 year, 1 month ago
- 0 answers
myCBSEguide
Trusted by 1 Crore+ Students
Test Generator
Create papers online. It's FREE.
CUET Mock Tests
75,000+ questions to practice only on myCBSEguide app
Sia ? 6 years, 1 month ago
# Python3 program to find compound
# interest for given values.
def compound_interest(principle, rate, time):
# Calculates compound interest
CI = principle * (pow((1 + rate / 100), time))
print("Compound interest is", CI)
# Driver Code
compound_interest(10000, 10.25, 5)
0Thank You