This is only a snippet of my code:
print("Total score for %s is %s ", name, score)
But I need it to print out:
"Total score for (name) is (score)"
where
name
is a variable in a listing and
score
is an integer. This is Python three.three if that allows at all.