Can you look at the expression and the output pair below and tell me how it differs?
1.
numregex=re.compile(r'\d{3}')
numregex.findall('the num is 123431532524542524')
output>>['123', '431', '532', '524', '542', '524']
numregex=re.compile(r'(\d){3}')
numregex.findall('the num is 1232143892432')
output>>['3', '4', '9', '3']
numregex=re.compile(r'(\d\d){3}')
numregex.findall('the num is 123431532524542524')
output>>['31', '24', '24']