Question: NEED A HELP PYTHON 3 Fix the code and add the proper print statements that will output the following: age = 22 weight = 175
NEED A HELP
PYTHON 3
Fix the code and add the proper print statements that will output the following:
age = 22 weight = 175 height = 6.0 gender = "male"
height_meters = height*.3084 weight_kilograms = weight*0.453592 BMI = weight_kilograms/height**2 if BMI
The output after running your correct and completed cell of code MUST match the output above exactly as is.

You may only change the variable values, not the variable names.
2.) You may not use any numbers in your print statements, only variable names.
3.) The if-else statements included in the original code must also be included in the final code you turn in. If you are unsure what if-else statements are, look them up and figure out how to use them.
Here is some information about one of my close friends. You may think he is old, but he is only 30 years of age. That is really not very old. His height in meters is: 1.8504 meters His weight in kilograms is: 79.3786 kilograms My friend's BMI is: 23.18313666864238 Is that considered a healthy BMI by the NHS? Yes, that is a healthy BMI. What if his BMI were higher... say 29 -- Is that considered a healthy BMI? No, that's not a healthy BMI. My friend is male -- what type of variable is gender? Gender is of the type:
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
