Skip to content.

Sections
Personal tools
You are here: Home Assignments Sample solution for Assignment 0
Document Actions

Sample solution for Assignment 0

Click here to get the file

Size 1 kB - File type text/python-source

File 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
by Max Chang last modified 2007-01-26 09:12 AM
 

Powered by Plone, the Open Source Content Management System