0% found this document useful (0 votes)
574 views12 pages

566316396-BMI-Calculator-Python-Project 230123 225 230126 095848

Computer Science project for class 12 on the topic BMI Calculator. It is very helpful for class 12th students studying computer science in python language Dowload it for free without ang cost.

Uploaded by

Tanishq Gupta
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
574 views12 pages

566316396-BMI-Calculator-Python-Project 230123 225 230126 095848

Computer Science project for class 12 on the topic BMI Calculator. It is very helpful for class 12th students studying computer science in python language Dowload it for free without ang cost.

Uploaded by

Tanishq Gupta
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 12

JSPM’s

RAJARSHI SHAHU COLLEGE OF ENGINEERING,


TATHAWADE, PUNE 411033
DEPARTMENT OF MCA

This is to certify that Mr. Lavhe Abhijit Satish MCA-II (SEM-I)


class has completed his project work title “Body Mass Index Calculator” as
part of curriculum, during the academic year 2021-22.

Date:
Place:

Mr. Manish Raut Prof. Rinku A. Dulloo


(Project In charge) (Head of Department)
Certificate

This is to certify that computer science project titled "BMI Calculator


" has been successfully completed by Tanishq Gupta of class XII A
bearing roll no. 36 under the guidance of Mr. Nitin Aviral (Subject
Teacher) as prescribed by the CBSE during the academic year 2022-
23.

______________________ ______________________
Signature of external teacher. Signature of Subject teacher
Acknowledgement

I would like to thank Sh. Mukesh Kumar, Principal Kendriya Vidyalaya Tagore
Garden.

I am deeply indepted to my mentor.

I further thank to all all the staff members of Kendriya Vidyalaya.

I owe my sincere gratitude towards Kendriya Vidyalaya Sangathan.

My heartfelt thanks to CBSE.

Finally, I would like to wind up by paying my heartfelt thanks to all my near and
dear ones.
INDEX

Sr. Title Page No.


No
1 Introduction 5

2 Implementation 6

3 Features 7

4 Project Code 8

5 Input-Output Screens 12

6 Conclusions 18

7 Future Enhancement 19
INTRODUCTION

BMI Calculator project is written in Python. The project


file contains a python script (bmi.py). This is a simple console
based application which is very easy to use. Talking about the
system,it can calculate your Body Mass Index and display your
health Status like severely underweight , UnderWeight , Healthy,
Overweight. Here, at first the user has to enter an Height OF
Person whose BMI will be Calculated. when the Height Entered
system proceed toward the next procedure i.e asking Weight OF
that Person. When a user passes all these Input procedures,
he/she can access their BMI index It is too easy to use, he/she
can check their respective Health Status.
IMPLEMENTATION

Technologies used - Python 3.9.

Language used - Python


FEATURES

1. Calculate BMI
2. Check Health Status
PROJECT CODE
height = float(input("Enter your height in centimetres (cms) "))

weight = float(input("Enter your weight in kg "))

height = height / 100

BMI = weight / (height ** 2)

print("Your Body Mass Index is ",BMI)

if BMI > 0:
if BMI <= 16:
print("You are severley underweight")

elif BMI <= 18:


print("You are underweight")

elif BMI <= 25:


print("You are Healthy")

elif BMI <= 30:


print("You are overweight")

else:
print("You are severley overweight")

else:
print("Please enter correct values")
SCREENSHOTS
CONCLUSION

Congratulations! I just finished your first Python BMI Calculator! I now


know how to create BMI Calculator and you’re able to expand the number of
possible actions in your Machine.

In this Project, I learned how to:

● Code your own BMI Calculator


● Take in user input with input ()
● Clean up your code with Enum and functions
● Describe more complex rules with a dictionary

These tools will continue to help you throughout your many


programming adventures.
Future Enhancement

● As discussed the limitation of this system, we can implement this


as client/server system. So all the data will be stored in the single
machine, and for any purpose all the data will be retrieved from
this central database.
● So there will be no human work require for the employee. There
will be only one person required who will maintain this central
database
Name : Tanishq Gupta
Class : 12th A
Roll no : 36

You might also like