diff --git a/README.md b/README.md index b103466139..2a2b1d78df 100644 --- a/README.md +++ b/README.md @@ -13,4 +13,4 @@ Output simple interest = p*t*r ``` -_© 2022 XYZ, Inc._ +_© 2023 XYZ, Inc._ diff --git a/compound_interest.py b/compound_interest.py index 9673a7a029..e5a863786b 100755 --- 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 craigcratergames