Hello all, I'm new to python and its been a stuggle so far. I'm attempting to create a BMI calculator in Wing 101 4.1. I keep getting syntax errors:
def calc_BMI(weight,height): return (weight/(height*height))*703.0 if bmi <=18.5: print 'underweight' elif bmi >= 18.5 and bmi <=24.9: print 'normal weight' elif bmi >=25 and bmi <=29.9: print 'overweight' elif bmi >=30: print 'obese' Also, height should be converted to inches and I have not the slightest clue how to so. Any help would be much appreciated. _______________________________________________ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: http://mail.python.org/mailman/listinfo/tutor