I am self teaching myself python and I have hit a question that I can't seem to figure out dealing with raw_input.
This is the code that is confusing me:
print "How tall are you?",
height = raw_input()
print "So, you're %r tall ." % (height)
I input my height as 5' 10" and get the follwing output:
How tall are you? 5' 10"
So, you're '5\' 10"' tall .
What am I missing from my code to fix the output so it reads properly?