It's simple when the string is something like:
s = 'test%s1'
s % 'TEST'
However, when % itself is present in the string, then I'm getting this error.
eg:
s = 'test%s12%34'
s % 'TEST'
>>ValueError: incomplete format
How to handel this case ??