Ich habe den folgenden Code
test = "have it break."
selectiveEscape = "Print percent % in sentence and not %s" % test
print(selectiveEscape)
Ich würde gerne die Ausgabe erhalten:
Print percent % in sentence and not have it break.
Was tatsächlich passiert:
selectiveEscape = "Use percent % in sentence and not %s" % test
TypeError: %d format: a number is required, not str