This is one of the few string functions that doesn't have a left and right version, but we can mimic the behaviour using some of the string functions that do.
>>> s = '123123'
>>> t = s.rsplit('2', 1)
>>> u = 'x'.join(t)
>>> u
'1231x3'
or
>>> 'x'.join('123123'.rsplit('2', 1))
'1231x3'