I have a pandas DF that has many string elements that contains words like this:
\'Frost \'
Alternatively you could use str.strip method:
rawlossDF['damage_description'] = rawlossDF['damage_description'].str.strip()