>>> m=re.match(r'WwW\.(.*)\..{3}','www.python.org')
>>> m.group(1)
Traceback (most recent call last):
File "
m.group(1)
AttributeError: 'NoneType' object has no attribute 'group'
这个问题是因为WwW这里错了,没有获得对应的值
改为以下代码:
>>> m=re.match(r'www\.(.*)\..{3}','www.python.org')