1. EMI 계산기:
p= float(input("Enter the loan amount Principal: ")) annual_rate = float(input("Enter the annual interest rate: ")) R = (annual_rate / 100) / 12 years = int(input("Enter the loan tenure: ")) N = years * 12 emi = (P * R * (1 + R)**N) / ((1 + R)**N - 1) print("your emi amount is:",emi)
원금, 연이자율, 대출기간 등의 값을 입력하면 결과는 다음과 같습니다.
Enter the loan amount Principal: 100000 Enter the annual interest rate: 10 Enter the loan tenure: 10 your emi amount is: 1321.5073688176194
2. SSLc 비율 계산:
tamil = input("Tamil Mark please: ") english = input("English Mark please: ") maths = input("Maths Mark please: ") science = input("Science Mark please: ") social = input("Social Mark please: ") print(int(tamil) + int(english) + int(maths) + int(science) + int(social)) total=int(tamil) + int(english) + int(maths) + int(science) + int(social) print("Your overall marks percentage is",(total/500*100))
따라서 모든 주제 표시를 입력하는 위 구문의 경우 출력은 다음과 같습니다.
Tamil Mark please: 83 English Mark please: 89 Maths Mark please: 83 Science Mark please: 95 Social Mark please: 90 440 Your overall marks percentage is 88.0
3. BMI 계산기:
weight = float(input("Enter your weight in kg: ")) height = float(input("Enter your height in meters: ")) bmi = weight / (height *height) print("your bmi is",bmi)
위 구문에서 체중(kg)과 신장(미터)을 입력한 후 출력은 다음과 같습니다
Enter your weight in kg: 70 Enter your height in meters: 1.68 your bmi is 24.801587301587304
4. EB 계산기:
def calculate_bill(units,price_per_unit): bill=units*price_per_unit return bill units=float(input("Enter the no of units consumed: ")) price_per_unit=float(input("Enter the price per unit: ")) total_bill=calculate_bill(units,price_per_unit) print("Total electricity bill:",total_bill)
소비된 단위수와 단위당 가격을 입력하면 출력은 다음과 같습니다.
Enter the no of units consumed: 200 Enter the price per unit: 10 Total electricity bill: 2000.0
위 내용은 EMI,BMI,SSLC%,EB 청구서 계산기에 대한 Python Day 프로젝트의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!