summaryrefslogtreecommitdiff
path: root/progs/a587.py
blob: 090067e8dfe984b6bbd853147316034db63f1065 (plain)
1
2
3
4
5
6
def count_Set_Bits(n): 
    count = 0
    while (n): 
        count += n & 1
        n >>= 1
    return count