replace specific alphabet in the column? pandas code example
Example 1: replace column values pandas
df['column'] = df['column'].str.replace(',','-')
df
Example 2: pandas find fifth caracter in field and change cell based on that number
data['result'] = data['result'].map(lambda x: x.lstrip('+-').rstrip('aAbBcC'))