>>> zznew
'...0002211 118 7.5 "Weeds" (2005) {The Love Circle Overlap (#4.10)}'
>>> re.split('\(+\d+\)',zznew)
['...0002211 118 7.5 "Weeds" ', ' {The Love Circle Overlap (#4.10)}']
>>> m = re.match('\(+\d+\)',zznew)
>>> m.groups()
Traceback (most recent call last):
File "<pyshell#104>", line 1, in <module>
m.groups()
AttributeError: 'NoneType' object has no attribute 'groups'
in the above example when i use split it matches with (2005) and splits it... but when i use match its not match...the m.groups() file is empty.. what is wrong with this :(