def BMI(height,weight) : BMI = weight * 703 / height ** 2 return BMI print ("Welcome to the BMI Index Calculator!."); name = input("Hello, please enter the student's name, or you can press 0 to quit: "); while name != "0": height = float (input ("Please enter the student's height in inches: "); weight = float (input ("Now please enter the student's weight in pounds: "); print (" "); print (name, " 's BMI Profile"); print ( "Height : ", height, "in"); print ( "Weight : ", weight, "lbs."); print ("BMI Index : " + str (round (BMI (height, weight), 2))); name = input ("Calculations for student complete, now you may enter another student's name and information if you would like, or press 0 to exit the program : "); print ("Exiting program, Thank you!......");