return results to user
at 2017-12-24 13:01:00.
in this example we will return results based on users input to them
age = raw_input("How old are you? ") height = raw_input("How tall are you? ") weight = raw_input("How much do you weigh? ") # we use 3 %r and the specify the order in parenthesis print "So, you're %r old, %r tall and %r heavy." % ( age, height, weight)