Skip to content

Commit

Permalink
fixing typo
Browse files Browse the repository at this point in the history
Signed-off-by: Upkar Lidder <[email protected]>
  • Loading branch information
Upkar Lidder committed Jan 12, 2022
1 parent 50d8d34 commit 46d3eda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compound_interest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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: "))

Expand Down

0 comments on commit 46d3eda

Please sign in to comment.