Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
def three_doubles(s): for i in range(0, len(s)-5); if s[i] = s[i+1] and s[i+2] == s[i+3] and s[i+4] == s[i+5]: return True return False
このコードを変更して、少なくとも 2 つの連続する 2 文字を含む単語を検索しようとしています
私はあなたが尋ねたことを正確に理解していませんでした。
l=['asd','aabb','ccddee'] for w in l: if len(w)>1: if len(w)==(2*len(set(w))): print w