I'm new to python and having a bit of trouble. If you guys could help explain how to do this and why it works the way it does would be awesome. I'm doing the learn python the hard way lesson 11 in python 3 trying to make the change over. I've looked for the last hour or so trying to figure this out. I have tried all kinds of (), " ", ' ' combo's. Thanks for the help. I'm struggling with the step over to python 3 from codecademy python tutorials I've done. Here is what I originally wrote be for i messed with it.
I have tried putting it outside the () and in there own () but I keep reading errors.
print ("How old are you?"),
age = input("Enter: ")
print ("How tall are you?"),
height = input("Enter:")
print ("What are you in to?"),
interest = input("Enter: ")
print ("So your %r and %r tall. Cool what do you like?"),
print ("I like to do %r "),
This code is running fine but the %r is not replacing with the user input().