I'm working my way through Learn Python the Hard Way using PythonAnywhere (as I am unable to install Python on my work laptop), and have reached exercise 11 where the code for the exercise is as follows:
print "How old are you?",
age = raw_input()
print "How tall are you?",
height = raw_input()
print "How much do you weigh?",
weight = raw_input()
print "So, you're %r old, %r tall and %r heavy." % (
age, height, weight)
When I run it, the first question doesn't appear - I just get a blank prompt. If I enter data and hit "return", I then get the second question just fine. However, if I comment out the "age = raw_input()" line then the second question doesn't appear either - but the third does.
Is this a bug, or am I overlooking something obvious?