pandas replace string with another string code example
Example 1: find and replace string dataframe
df['range'] = df['range'].str.replace(',','-')
Example 2: str replace pandas
>>> pd.Series(['foo', 'fuz', np.nan]).str.replace('f.', 'ba', regex=True)
0 bao
1 baz
2 NaN
dtype: object
Example 3: pandas replace string with another string
df['prod_type'] = df['prod_type'].replace({'respon':'responsive', 'r':'responsive'})