fork(3) download
  1. import re
  2. split = re.findall(r"[\w']+|[.,!?;]", "How are you?")
  3. print(split)
Success #stdin #stdout 0.01s 9016KB
stdin
Standard input is empty
stdout
['How', 'are', 'you', '?']