Python:如果字符串中没有连续7个相同字符的子字符串,则返回True

时间:2018-05-09 02:30:16

标签: python python-3.x

我没有遇到过这个问题,所以我被困住了。我只是不知道在我的' if'声明。在这种情况下我应该使用什么字符串方法?

def func(string):
    if #I just don't know what to put in here:
        return True
    else:
        return False

1 个答案:

答案 0 :(得分:4)

return not re.search('(.)\\1{6}', S)