fork download
  1. import re
  2.  
  3. print re.findall(r'^([abc])+$', 'abc')
Success #stdin #stdout 0.01s 9016KB
stdin
Standard input is empty
stdout
['c']