First solution in Clear category for Binary Count by hidebehind3
def checkio(number): return '{:b}.'.format(number).count('1')
Nov. 13, 2018