标签: python python-3.x
我没有遇到过这个问题,所以我被困住了。我只是不知道在我的' if'声明。在这种情况下我应该使用什么字符串方法?
def func(string): if #I just don't know what to put in here: return True else: return False
答案 0 :(得分:4)
return not re.search('(.)\\1{6}', S)