ホームページ  >  記事  >  バックエンド開発  >  EMI、BMI、SSLC %、EB Bill 計算機に関する Python Day プロジェクト

EMI、BMI、SSLC %、EB Bill 計算機に関する Python Day プロジェクト

Mary-Kate Olsen
Mary-Kate Olsenオリジナル
2024-11-19 02:54:02390ブラウズ

Python Day roject on EMI,BMI,SSLC %,EB Bill calculator

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 Bill 計算機に関する Python Day プロジェクトの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。