Pandas. Ersetzen Sie mehrere Werte in der Spalte

df['column name'] = df['column name'].replace(['1st old value','2nd old value',...],['1st new value','2nd new value',...])
NotACoder