I have a substitution in Python which looks like this :
re.sub('','?',"Man")
The only problem is that the output is :
?M?a?n?
But I want to avoid the first substitution so it looks like this :
M?a?n?
How can I avoid matching only the start of the line but keep matching everything else?