Python:AttributeError: 问题

>>> m=re.match(r'WwW\.(.*)\..{3}','www.python.org')
>>> m.group(1)
Traceback (most recent call last):
  File "", line 1, in
    m.group(1)
AttributeError: 'NoneType' object has no attribute 'group'

这个问题是因为WwW这里错了,没有获得对应的值

改为以下代码:

>>> m=re.match(r'www\.(.*)\..{3}','www.python.org')

你可能感兴趣的:(python,python)