How will I achieve below mentioned output.
I wanted to remove multiple occurrences of the **ONLY **special character **not words or digit. **
I tried this code but its replace all the value
Single_Column['Workload_2'].replace(regex=True, inplace=True, to_replace=r"[^a-zA-Z0-9 -]", value=r'-')