From e3a99584a3db77cc49d63d812b4ca94a7f99f188 Mon Sep 17 00:00:00 2001 From: Carlos Garcia Date: Sun, 1 Jun 2025 14:19:40 -0400 Subject: [PATCH] Bug-fix-revert --- README.md | 2 +- compound_interest.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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..3b692ee38e 100755 --- a/compound_interest.py +++ b/compound_interest.py @@ -17,7 +17,7 @@ def compound_interest(p, t, r): if __name__ == "__main__": - p = float(input("Enter the principal amount: ")) + p = float(input("Enter the principle amount: ")) t = float(input("Enter the time period: ")) r = float(input("Enter the rate of interest: "))