From 1bdeb4938f5c1dc1ab5fd6ab29344245e7387751 Mon Sep 17 00:00:00 2001 From: abhiray310 <64996064+abhiray310@users.noreply.github.com> Date: Fri, 2 Oct 2020 20:26:38 +0530 Subject: [PATCH] BMI CULCLATER PLEASE FRIEND SEE CODE AND ENJOY BMI CALCULATER. --- BMI CALCULATER | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 BMI CALCULATER diff --git a/BMI CALCULATER b/BMI CALCULATER new file mode 100644 index 0000000..cf44e69 --- /dev/null +++ b/BMI CALCULATER @@ -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")