Created
March 8, 2019 09:38
-
-
Save muiton/6205514d90e624af584bdc7c1ec0f08c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
print('Interest Calculator:') | |
amount = float(input('Principal amount ?')) | |
roi = float(input('Rate of Interest ?')) | |
years = int(input('Duration (no. of years) ?')) | |
total = (amount * pow(1 + (roi/100), years)) | |
interest = total - amount | |
print('\nInterest = %0.2f' %interest) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment