I have a DataFrame called "Animals" that looks like this:
Words
The Black Cat
The Red Dog
I want to add a plus sign before each word so that it looks like this:
Words
+The +Black +Cat
+The +Red +Dog
I have tried this using regex but it did not work:
df = re.sub(r'([a-z]+)', r'+\1', Animals)