From 1fd001809b795aa6e7a1effa8ab5ee97ce4bfa5d Mon Sep 17 00:00:00 2001 From: Adarsh Date: Wed, 3 Sep 2025 15:38:40 -0400 Subject: [PATCH 1/3] fix: updated year in the footer --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b103466139..23a440c9e4 100644 --- a/README.md +++ b/README.md @@ -13,4 +13,4 @@ Output simple interest = p*t*r ``` -_© 2022 XYZ, Inc._ +2023 XYZ, Inc. From bdad5efce38c8fe94d19fc3b5554214e423d9496 Mon Sep 17 00:00:00 2001 From: Adarsh Date: Wed, 3 Sep 2025 16:02:41 -0400 Subject: [PATCH 2/3] Revert "fixing typo" This reverts commit 46d3edae49a4f042875150edb056c08519062f91. --- compound_interest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: ")) From 2ae2b61334d850e6c85799ed4911a6757eaa25ef Mon Sep 17 00:00:00 2001 From: Adarsh Date: Wed, 3 Sep 2025 16:04:07 -0400 Subject: [PATCH 3/3] Revert "fix: updated year in the footer" This reverts commit 1fd001809b795aa6e7a1effa8ab5ee97ce4bfa5d. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 23a440c9e4..b103466139 100644 --- a/README.md +++ b/README.md @@ -13,4 +13,4 @@ Output simple interest = p*t*r ``` -2023 XYZ, Inc. +_© 2022 XYZ, Inc._