For a better understanding you can refer the following link string formatting:
Use comma (,) to separate strings and variables while printing: eg
print "If there is a birth every 7 seconds, there would be: ",births,"births"
, in print statement separtes the items by a single space:
>>> print "abc","bcd","def"
abc bcd def