Here is my idle window right now:
>>> regex = re.compile(r'(\d){3,5}')
>>> regex.findall('234234234')
['3', '4']
>>> regex.findall('234 345 456')
['4', '5', '6']
>>>
>>> regex.search('22343')
<_sre.SRE_Match object; span=(0, 5), match='22343'>
>>>
Why is it doing this?