From 46d3edae49a4f042875150edb056c08519062f91 Mon Sep 17 00:00:00 2001 From: Upkar Lidder Date: Wed, 12 Jan 2022 15:11:14 -0800 Subject: [PATCH] fixing typo Signed-off-by: Upkar Lidder --- compound_interest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compound_interest.py b/compound_interest.py index 3b692ee38e..9673a7a029 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 principle amount: ")) + p = float(input("Enter the principal amount: ")) t = float(input("Enter the time period: ")) r = float(input("Enter the rate of interest: "))