Split with Multiple

import re
content = "Hey, you - what are you doing here!?"
contents = re.findall(r"[\w']+", content)
contents
['Hey', 'you', 'what', 'are', 'you', 'doing', 'here']
for c in contents:
    print(c)
Hey
you
what
are
you
doing
here