Computer Science, asked by irene41, 6 months ago

CLASS 11 -INFORMATICS PRACTICES

1. Write a Python program to calculate EMI for amount,period and interest.

EMI = [P x R x (1+R)^N]/[(1+R)^N-1], where P stands for the loan amount or principal,

R is the interest rate per and N is the number of monthly instalments.

Answers

Answered by Ꚃhαtαkshi
37

Answer:

\setlength{\unitlength}{1cm}\begin{picture}(20,15)\thicklines\qbezier (1.5,0)(1.5,0)(4.5,0)\qbezier (1.5,0)(1.5,0)(0,2)\qbezier(4.5,0)(4.5,0)(6,2)\qbezier (0,2)(0,2)(1.5,4)\qbezier (6,2)(6,2)(4.5,4)\qbezier (1.5,4)(1.5,4)(4.5,4)\put (0.9,-0.2){\sf A}\put (4.7,-0.2){\sf B}\put (-0.3,2.1){\sf D}\put (6.1,2.1){\sf C}\put (1.3,4.1){\sf E}\put (4.7,4.1){\sf F}\end {picture}

Answered by sourasghotekar123
0

Answer:

Python program that takes input for the loan amount, interest rate per month, and the number of monthly instalments, and then calculates the equated monthly instalment (EMI) using the formula EMI = [P x R x (1+R)^N]/[(1+R)^N-1]

Explanation:

Python program that takes input for the loan amount, interest rate per month, and the number of monthly instalments, and then calculates the equated monthly instalment (EMI) using the formula EMI = [P x R x (1+R)^N]/[(1+R)^N-1]:
#taking input for loan amount

P = float(input("Enter the loan amount: "))

#taking input for interest rate per month

R = float(input("Enter the interest rate per month: "))

#taking input for number of monthly instalments

N = int(input("Enter the number of monthly instalments: "))

#calculating EMI

emi = (P * R * ((1+R)**N))/(((1+R)**N)-1)

#printing the EMI

print("The equated monthly instalment (EMI) is:", round(emi, 2))


In this program, we first take the input for the loan amount, interest rate per month, and the number of monthly instalments using the input() function. We then calculate the EMI using the formula and assign it to the emi variable. Finally, we use the print() function to display the calculated EMI value rounded off to two decimal places.

for more question on Python program

https://brainly.in/question/31655938

#SPJ3

Similar questions