python pandas dataframe replace column values containing text in list code example
Example 1: replace column values pandas
df['column'] = df['column'].str.replace(',','-')
df
Example 2: pandas replace word begins with contains
df.sport = df.sport.apply(lambda x: 'ball sport' if 'ball' in x else x)