Skip to content

Instantly share code, notes, and snippets.

@ImOmkar
Created August 16, 2018 18:45
Show Gist options
  • Save ImOmkar/3ccd1179407111c5c32d2709260a3b44 to your computer and use it in GitHub Desktop.
Save ImOmkar/3ccd1179407111c5c32d2709260a3b44 to your computer and use it in GitHub Desktop.
Proogram to calculate simple interest in Python
p=float(input("Enter the Ammount :\n"))
r=float(input("Enter the Rate :\n"))
n=float(input("Enter the Duration :\n"))
simple_interest=(p*n*r)/100
print("Your Simple Interest Is :",simple_interest)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment