AttributeError:'NoneType'对象的字符串中没有属性'groups'

时间:2019-06-21 11:40:23

标签: python regex python-3.6

我一直在关注正则表达式,它可以用整数正常工作 但是当我尝试使用字符串时,它向我显示了此错误! AttributeError:'NoneType'对象没有属性'groups'

>>> stringRex = re.compile(r'bug(bugs)')
>>> find1 = stringRex.search('this is a bug and so many bugs')
>>> find1.group()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'NoneType' object has no attribute 'group'

0 个答案:

没有答案