I have read the python documentation related sections, searched everywhere I could think, and asked my colleagues and we can't come up with the direct solution just work arounds.
test = "have it break."
selectiveEscape = "Print percent % in sentence and not %s" % test
print selectiveEscape
Desired output:
Print percent % in sentence and not have it break.
What actually happens:
selectiveEscape = "Use percent % in sentence and not %s" % test
TypeError: %d format: a number is required, not str
%symbols - is the responsibility of the file creator. – Karl Knechtel May 22 '12 at 16:04