I am trying to replace / using pandas and it looks like I'm facing a problem since it does not affect my DataFrame. I do realize the possible problem may be due to the fact a character / is used to escape a string in python... but how can I change the code to replace character - / to just a space... ?
Many thanks for any tips in advance.
Data['DESCRIPTION'] = Data['DESCRIPTION'].str.replace('/', ' ')