Skip to content

Commit be6ab63

Browse files
committed
updated
1 parent 83026bb commit be6ab63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compound_interest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# Output:
1212
# compound interest = p * (1 + r/100)^t
1313

14-
14+
# I have update this script
1515
def compound_interest(p, t, r):
1616
return p * (pow((1 + r / 100), t))
1717

0 commit comments

Comments
 (0)