diff --git a/compound_interest.py b/compound_interest.py index 9673a7a..489408a 100644 --- a/compound_interest.py +++ b/compound_interest.py @@ -22,3 +22,5 @@ def compound_interest(p, t, r): r = float(input("Enter the rate of interest: ")) print("The compound interest is {:.2f}".format(compound_interest(p, t, r))) + +# Here is a new update by bachkhoastu