Write a Python function to compute compound interest
Topic: Write a Python function to compute compound interest
Solution
def compound_interest(principle, rate, time): Amount = principle * (pow((1 + rate / 100), time)) CI = Amount - principle return CI
List all Python Programs