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