mirror of
https://github.com/metafy-social/python-scripts.git
synced 2025-01-31 13:43:45 +00:00
17 lines
466 B
Python
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")
|