>>> test = "have it break.">>> selectiveEscape = "Print percent %% in sentence and not %s" % test>>> print selectiveEscapePrint percent % in sentence and not have it break.

>>> test = "have it break.">>> selectiveEscape = "Print percent %% in sentence and not %s" % test>>> print selectiveEscapePrint percent % in sentence and not have it break.