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.
1 parent 83026bb commit be6ab63Copy full SHA for be6ab63
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