I have this below text and I am trying to remove the special character shown in the image using Python.
Update (pasting the text):
145,Kevin,07/06/2018 15:12:37,Kevin,nan,nan,"have to clear outstanding tasks.
check schedule "
I tried the below but had no luck
DF['col'] = re.sub("[^a-zA-Z]", " ", str(DF['col']))
Could anyone assist on this. Thanks..