J'ai lu la documentation python sections connexes, cherché partout, je pouvais penser, et demandé à mes collègues et nous ne pouvons pas venir avec la solution directe viens de solutions.
test = "have it break."
selectiveEscape = "Print percent % in sentence and not %s" % test
print selectiveEscape
Sortie désirée:
Print percent % in sentence and not have it break.
Ce qui se passe réellement:
selectiveEscape = "Use percent % in sentence and not %s" % test
TypeError: %d format: a number is required, not str