Keeping it simple, I personally like string concatenation:
print("Total score for " + name + " is " + score)
It works with both Python 2.7 an 3.X.
NOTE: If score is an int, then, you should convert it to str:
print("Total score for " + name + " is " + str(score))