I wish #Python's string replace method allowed specifying "count" as a keyword argument.
>>> text = "Hello? Python?"
>>> text.replace("?", "!", count=1)
I find that more explicit than this:
>>> text.replace("?", "!", 1)
'Hello! Python?'
But the replace only allows positional arguments 馃悕馃槩

