I've a question about double quotes escaping in python string formatting. for example,
print "How tall are you?",
height = raw_input()
print "So you are %r tall" % height
when I put 5" 6' , it returns ' 5\'6" ' and i don't get why there is a backslash.