From 48ce4805903cfddbcbb9523094b25b29fc4293d1 Mon Sep 17 00:00:00 2001 From: gitSandeepmore <72209633+gitSandeepmore@users.noreply.github.com> Date: Thu, 1 Oct 2020 23:23:18 +0530 Subject: [PATCH] Added Simple_Interest program --- Simple_Interest.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Simple_Interest.py diff --git a/Simple_Interest.py b/Simple_Interest.py new file mode 100644 index 00000000..5e36612d --- /dev/null +++ b/Simple_Interest.py @@ -0,0 +1,11 @@ +# https://www.facebook.com/sandeepmore.more.5/posts/1261804104181092 +bscribed by code House + + + +p=float(input("Enter principle:")) +r=float(input("Enter rate of interest:")) +t=float(input("Enter time duration:")) +# The formula for the simple interest is:- +SI=(p*r*t)/100 +print("Simple Interest:",SI)