We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 83026bb + be6ab63 commit 7cb5393Copy full SHA for 7cb5393
compound_interest.py
@@ -11,7 +11,7 @@
11
# Output:
12
# compound interest = p * (1 + r/100)^t
13
14
-
+# I have update this script
15
def compound_interest(p, t, r):
16
return p * (pow((1 + r / 100), t))
17
0 commit comments