Contact: aviboots(AT)netvision.net.il
39,890 questions
51,819 answers
573 users
# bit_count() - Return the number of ones in a binary representation of an integer # This is also known as the population count n = 201 print(bin(n)) print(n.bit_count()) ''' run: 0b11001001 4 '''