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

Mary-Kate Olsen
Release: 2024-11-19 02:54:02
Original
386 people have browsed it

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

1. EMI calculator:

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)
Copy after login

If we enter the values of principal amount,rate of annual interest,tenure of the loan then the result will be like this,

Enter the loan amount Principal: 100000
Enter the annual interest rate: 10
Enter the loan tenure: 10
your emi amount is: 1321.5073688176194

Copy after login

2. Sslc percentage calculation:

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))

Copy after login

So for the above syntax by entering all subject marks then the output will be,

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

Copy after login

3. BMI calculator:

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)

Copy after login

For the above syntax after entering weight(kg) and height(meters) then the output will be

Enter your weight in kg: 70
Enter your height in meters: 1.68
your bmi is 24.801587301587304

Copy after login

4. EB calculator:

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)

Copy after login

After entering no of units consumed and price per unit the output will be,

Enter the no of units consumed: 200
Enter the price per unit: 10
Total electricity bill: 2000.0

Copy after login

The above is the detailed content of Python Day roject on EMI,BMI,SSLC %,EB Bill calculator. For more information, please follow other related articles on the PHP Chinese website!

source:dev.to
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template