I have a string that looks like \'%s in %s\' and I want to know how to seperate the arguments so that they are two different %s. My mind coming from Java came u
\'%s in %s\'
You could also use it clean and simple (but wrong! because you should use format like Mark Byers said) by doing:
format
print 'This is my %s formatted with %d arguments' % ('string', 2)