输入一个int型的正整数,计算出该int型数据在内存中存储时1的个数。
输入一个整数(int类型)
这个数转换成2进制后,输出1的个数
5
2
num = int(input().strip()) print(bin(num).count('1'))