Little coding :) solution in Clear category for Binary Count by mclosos
def checkio(number): return str(bin(number)[2:]).count('1')
Feb. 21, 2016