Write a function that takes in height(m) and weight(kg), calculates BMI and prints the comments
Topic: Write a function that takes in height(m) and weight(kg), calculates BMI and prints the comments
Solution
def bmi(height: "Meters", weight: "Kgs"): bmi = weight/(height**2) print("Your BMI is: {0} and you are ".format(bmi), end='') if ( bmi < 16): print("severely underweight.") elif ( bmi >= 16 and bmi < 18.5): print("underweight.") elif ( bmi >= 18.5 and bmi < 25): print("healthy.") elif ( bmi >= 25 and bmi < 30): print("overweight.") elif ( bmi >=30): print("severely overweight.")
List all Python Programs