1 2 3 4 5 6 7 8 9 10 11 12 |
weight = height = BMI = * 701 / **2 print "Your BMI is %r!" % (BMI) if BMI <= 25: print "You are of healthy BMI-ness!" else: print "YOU ARE EITHER MUSCLY OR FAT." |
1 2 3 4 5 6 7 8 9 10 11 12 |
weight = height = BMI = * 701 / **2 print "Your BMI is %r!" % (BMI) if BMI <= 25: print "You are of healthy BMI-ness!" else: print "YOU ARE EITHER MUSCLY OR FAT." |