Sample solution for Assignment 0
Size 1 kB - File type text/python-sourceFile contents
weight_lbs = input('What is your weight (in pounds)? ')
height_in = input('What is your height (in inches)? ')
weight_kg = weight_lbs/2.2046
height_m = height_in/39.37
BMI = weight_kg/height_m**2
print "Your BMI is ", BMI