First solution in Clear category for Binary Count by Beo
def checkio(number): return str(bin(number)).count('1')
Oct. 2, 2018