1. def compound_interest(principle, rate, time): amount = principle * (pow((1 + rate / 100), time)) CI = amount - principle print("The compound interest is", CI)