I would like to remove all instance of the string in col 'B' from col 'A', like so:
col A col B col C
1999 toyota camry camry 1999 toyota
2003 nissan pulsar pulsar 20013 nissan
How would I do this using pandas? If it was a fixed value (non-dependent on another column), I would use:
df['col C'] = df['col A'].str.replace('value-to-replace','')