我一直在关注正则表达式,它可以用整数正常工作 但是当我尝试使用字符串时,它向我显示了此错误! 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'