summaryrefslogtreecommitdiff
path: root/progs/a313.py
blob: a97767dd3187775684a8be5db0be196e35a071b4 (plain)
1
2
3
4
5
6
7
def is_Two_Alter(s):  
    for i in range (len( s) - 2) : 
        if (s[i] != s[i + 2]) : 
            return False
    if (s[0] == s[1]): 
        return False
    return True