summaryrefslogtreecommitdiff
path: root/progs/a167.py
blob: 1392dacd2b007e01a11b63f2b45328a4a9064954 (plain)
1
2
3
4
5
6
7
8
9
def check_Odd_Parity(x): 
    parity = 0
    while (x != 0): 
        x = x & (x - 1) 
        parity += 1
    if (parity % 2 == 1): 
        return True
    else: 
        return False