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

Mary-Kate Olsen
リリース: 2024-11-19 02:54:02
オリジナル
389 人が閲覧しました

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 サイトの他の関連記事を参照してください。

ソース:dev.to
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
著者別の最新記事
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート