> 백엔드 개발 > 파이썬 튜토리얼 > EMI 계산기에 프로그램 작성

EMI 계산기에 프로그램 작성

Barbara Streisand
풀어 주다: 2024-11-23 13:25:16
원래의
505명이 탐색했습니다.

Write a program to EMI calculator

EMI 계산기:

EMI 계산기를 사용하면 월별 할부금을 쉽게 계산할 수 있습니다. 대출 금액, 대출 기간, ​​이자율 등 필요한 세부 정보를 입력하면 은행의 EMI 계산기가 예상 EMI(Equal Monthly Installment)를 즉시 표시합니다.

다음 공식을 사용하여 EMI를 계산할 수 있습니다.

EMI = [P x R x ( 1 R )^N] / [( 1 R )^N -1]

장소 :

P = 원금

R=월이자율(연이자율/12개월)

N = 대출 기간(개월)

예:

# Input the loan amount
loan = int(input("Enter the loan amount: "))

# Input the loan tenure in years and convert to months
tenure_year = int(input("Enter the loan tenure in years: "))
tenure_month = tenure_year * 12  # Convert years to months
print("Loan tenure in months:", tenure_month)

# Input the interest rate per year and convert to monthly interest rate
interest_year = float(input("Enter the interest per year: "))
interest_month = interest_year / 12 / 100  # Convert annual interest rate to monthly decimal rate
print("Interest per month in percentage:", interest_month)

# Calculate EMI using the formula
emi = loan * (interest_month * (1 + interest_month) ** tenure_month) / ((1 + interest_month) ** tenure_month - 1)

# Display the calculated EMI, rounded to 2 decimal places
print("EMI:", round(emi, 2))
로그인 후 복사

출력:

Enter the loan amount:500000
Enter the loan tenure in years :10
Loan tenure in months: 120
Enter the interest per year:3.5
Interest per month in percentage: 0.002916666666666667
EMI: 4944.29


로그인 후 복사

위 내용은 EMI 계산기에 프로그램 작성의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:dev.to
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿