python-scripts/scripts/BMI/bmi.py
2022-12-23 22:54:53 -06:00

17 lines
466 B
Python

Height=float(input("Enter your height in cm: "))
Weight=float(input("Enter your Weight in kg: "))
Height = Height/100
BMI=Weight/(Height*Height)
print("Your Body Mass Index (BMI) is: ",BMI)
if(BMI>0):
if(BMI<=16):
print("You are severely underweight")
elif(BMI<=18.5):
print("You are underweight")
elif(BMI<=25):
print("You are Healthy")
elif(BMI<=30):
print("You are overweight")
else: print("You are severely overweight")
else:("enter valid details")