fork download
  1. import re
  2. print(re.split(r'\s+','a b c'))
  3. # your code goes here
  4. # your code goes here
Success #stdin #stdout 0.14s 15536KB
stdin
Standard input is empty
stdout
['a', 'b', 'c']