fork download
  1. import re
  2.  
  3. def f1(data):
  4. p = re.compile('(?P<dept>[A-Z]{2,3}) (?P<num>[0-9]{3})')
  5. return p.search(data)
  6.  
  7.  
Success #stdin #stdout 0.01s 7048KB
stdin
Standard input is empty
stdout
Standard output is empty