From 496561e42772ee0a8fe91654de2f864b93c7a26e Mon Sep 17 00:00:00 2001 From: yashkumarjha12 <72943344+yashkumarjha12@users.noreply.github.com> Date: Thu, 6 Oct 2022 12:11:22 +0530 Subject: [PATCH] Create EMI Calculator.py --- Python/EMI Calculator.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Python/EMI Calculator.py diff --git a/Python/EMI Calculator.py b/Python/EMI Calculator.py new file mode 100644 index 0000000..4521831 --- /dev/null +++ b/Python/EMI Calculator.py @@ -0,0 +1,5 @@ +a=int(input('enter principal amount=')) +b=int(input('enter rate of interest=')) +c=int(input('enter number of years=')) +d=((a*b/12)*(1+b/12)**c)/((1+b/12)**c)-1 +print('EMI=',d)