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: "))