In the "Learn Python the hard way" book in exercise 11 I found something like this:
print "How old are you?",
age = raw_input()
And the output is:
How old are you? 38
But when I add the comma in Python 2.7.13 it just prints the print statement and a new line begins.