Another option:
import re
string = "The , world , is , a , happy , place "
match = re.findall(r'[^\s,]+', string)
for m in match:
print m
Output
The
world
is
a
happy
place
See a demo
You could also just use match = re.findall(r'\w+', string)
and you will get the same output.