BMI Calculator Python Project
BMI Calculator Python Project
ON
BY
Mr. Lavhe Abhijit Satish
UNDER THE GUIDANCE OF
IN PARTIAL FULFILLMENT OF
Under
University of Pune
DEPARTMENT OF MASTER IN COMPUTER APPLICATIONS
Academic Year 2021-2022
JSPM’s
RAJARSHI SHAHU COLLEGE OF ENGINEERING
PUNE-33
JSPM’s
RAJARSHI SHAHU COLLEGE OF ENGINEERING,
TATHAWADE, PUNE 411033
DEPARTMENT OF MCA
Date:
Place:
Finally, my honest gratitude towards all those unseen people across the Internet
for being light houses for my journey related towards my project.
2 Implementation 6
3 Features 7
4 Project Code 8
5 Input-Output Screens 12
6 Conclusions 18
7 Future Enhancement 19
INTRODUCTION
1. Calculate BMI
2. Check Health Status
PROJECT CODE
height = float(input("Enter your height in centimetres (cms) "))
if BMI > 0:
if BMI <= 16:
print("You are severley underweight")
else:
print("You are severley overweight")
else:
print("Please enter correct values")
SCREENSHOTS
CONCLUSION