Edit bmi.py capitalization

This commit is contained in:
dumbprogrammer 2022-12-23 22:54:53 -06:00 committed by GitHub
parent 19a74dd680
commit 5c972513dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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