Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions BMI CALCULATER
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
filter_none
edit
play_arrow

brightness_4
#Python program to illustrate
# how to calculate BMI
def BMI(height, weight):
bmi = weight/(height**2)
return bmi

# Driver code
height = 1.79832
weight = 70

# calling the BMI function
bmi = BMI(height, weight)
print("The BMI is", format(bmi), "so ", end='')

# Conditions to find out BMI category
if (bmi < 18.5):
print("underweight")

elif ( bmi >= 18.5 and bmi < 24.9):
print("Healthy")

elif ( bmi >= 24.9 and bmi < 30):
print("overweight")

elif ( bmi >=30):
print("Suffering from Obesity")