Python kurangi 2 string

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