fork download
  1. import re
  2. text = 'just a test'
  3. print(re.findall(r'(?=(\w{2}))',text))
Success #stdin #stdout 0.01s 23304KB
stdin
Standard input is empty
stdout
['ju', 'us', 'st', 'te', 'es', 'st']