you can print as many thing as you want for example:
print "You're", age, "years old and", height, "centimeters tall"
or you can use string format
print "You're {} years old and {} centimeters tall".format(age,height)
example
>>> age=29
>>> height=160
>>> print "You're", age, "years old and", height, "centimeters tall"
You're 29 years old and 160 centimeters tall
>>> print "You're {} years old and {} centimeters tall".format(age,height)
You're 29 years old and 160 centimeters tall
>>>
there are several ways on how to do it as illustrated in the others answers and comments, my favorite is the string format
Also if you need to convert those input in numbers to do math on them use int
or float
accordingly
x = int(raw_input("write a number: "))
furthermore, as you are learning python I recommend starting with the newest version, python 3.5 you can later ajust to older version if needed