Question: Need to fix a code Please show me how to do it This is Python 3 # You may not use any numbers in your
Need to fix a code Please show me how to do it This is Python 3 # You may not use any numbers in your print statements, only the variable names. # You must use the if-else statements included below in your final code. # Make sure to use as many comments as appropriate so I can understand what you are doing with your code. age = 22 weight = "One hundred seventy five lbs" height = 6'0" gender = male height_meters = height*.3084 weight_kilograms = weight*0.453592 BMI = weight_kilograms/height^2 if BMI < 24.9: print("Yes, that's a healthy BMI") else: print("No, that's not a healthy BMI") BMI_2 = ??? if BMI < 24.9: print("Yes, that is a healthy BMI") else: print("No, that's not a healthy BMI") File "", line 8 height = 6'0" ^ SyntaxError: EOL while scanning string literal
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
