题解 | #求int型正整数在内存中存储时1的个数#
求int型正整数在内存中存储时1的个数
https://www.nowcoder.com/practice/440f16e490a0404786865e99c6ad91c9
a=int(input())#获取输入数据 a=format(a,"b")#使用format函数将数据转为二进制,(format函数中,b,o,x代表二进制,八进制,十六进制) a=a.count("1") #统计转换后的二进制数据中包含“1”的个数 print(a)#输出统计结果