Python soustrait 2 chaînes

def substract(a, b):                              
    return "".join(a.rsplit(b))
Excited Eel