BMI (Body Mass Index) is an inexpensive and easy screening method for weight category-underweight, healthy weight, overw
Posted: Mon Jun 06, 2022 5:58 pm
BMI (Body Mass Index) is an inexpensive and easy screening method for weight category-underweight, healthy weight, overweight, and obesity. It is calculated as dividing your weight in pounds by your height (in inches) squared and then multiplied by 703. In other words BMI=(W/H)*703. Create a program in Python to accept input from clients of their name, weight (in pounds) and height (in inches) Calculate his/her BMI and then display a message telling them the result. Below is the table of BMI for adults: BMI Below 18.5. 18.5-24.9 25.0 29.9 Weight Status Underweight Normal Overweight Obese 30.0 and Above Your program should display for the client a message telling them in which range they are. Code your program as a loop so that the program will continue to run until there are no more clients. You decide what will end the program. Extra details to follow: Be sure to add comments to your program to explain your code. ● Insert blank lines for readability. . Be sure the program executes in a continual running mode until your condition is met to stop. I should be able to enter information for multiple clients. You can customize your messages displayed back to the client about his her BMI status. Be nice. Add to your program the time function so it will pause 5 seconds after executing all lines of code.