print=None import re phoneNumRegex = re.compile(r"\d\d\d-\d\d\d-\d\d\d\d") mo = phoneNumRegex.search('My number is 415-555-4242.') print('Phone number found: '+mo.group())
Standard input is empty
Standard output is empty
Traceback (most recent call last): File "./prog.py", line 5, in <module> TypeError: 'NoneType' object is not callable