fork download
  1. # your code goes here
  2. import re
  3. print(re.findall('a(b+)c', 'aabbbbc'))
Success #stdin #stdout 0.04s 9584KB
stdin
Standard input is empty
stdout
['bbbb']