I'm trying to figure out how to use '%s'. I looked it up in the python docs but it never actually shows how to use it.
This is the line I'm working on right now just to figure it out. It is the first one of different variations where the location of the %s didn't give me an immediate syntax error and actually ran the code.
print('%sPlayer ', x %':')
What I'm trying to do is get it to print out like this "Player x:" where x is an integer.