1.

Write a program of compound interest in Python

Answer» # Python3 program to find compound# interest for given values.def compound_interest(principle, rate, time): # Calculates compound interest\xa0 CI = principle * (pow((1 + rate / 100), time)) print("Compound interest is", CI) # Driver Code\xa0compound_interest(10000, 10.25, 5)


Discussion

No Comment Found