Python Program to find Compound Interest
Input:
1200
5.4
2
Output:
Compound interest is 1333.0992
Code:
p=float(input())
r=float(input())
t=float(input())
x=p*(1+r/100)**t
print("Compound interest is ",x)
Note:
Hello Guys, Don't Stop Learning keep Going..............