We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57a1ca0 commit 94acf2cCopy full SHA for 94acf2c
Compound Interest.py
@@ -0,0 +1,9 @@
1
+"""Calculte Compound Interest Interest"""
2
+def ci(principle, rate, time):
3
+ Amount = principle * (pow((1 + rate / 100), time))
4
+ Amount - principle
5
+ print("Compound Interest is",Amount - principle)
6
+p=float(input("Enter the Principle Amount : "))
7
+r=float(input("Enter the Rate of Interest : "))
8
+t=float(input("Enter the time in years : "))
9
+ci(p,r,t)
0 commit comments