# heightConvert # # This program asks the user to enter name, and then height in inches. # It prints a one line personalized report given the height in feet and inches. # def main (): userName = raw_input("Hi! Please enter your name: ") heightInches = input ("Enter your height in inches: ") feet = heightInches / 12 # number of whole feet leftoverInches = heightInches % 12 # inches beyond the whole feet print userName + ", you are " + str(feet) + " feet " + str (leftoverInches) + " inches tall" main()