题解 | #求int型正整数在内存中存储时1的个数#
求int型正整数在内存中存储时1的个数
https://www.nowcoder.com/practice/440f16e490a0404786865e99c6ad91c9
print(list(bin(int(input()))).count('1')) step1:bin(int(input()))使用bin函数将数字转化为0b格式的二进制字符串形式的表示数 step2:将字符串转为列表 step3:统计列表中1出现的个数
求int型正整数在内存中存储时1的个数
https://www.nowcoder.com/practice/440f16e490a0404786865e99c6ad91c9
print(list(bin(int(input()))).count('1')) step1:bin(int(input()))使用bin函数将数字转化为0b格式的二进制字符串形式的表示数 step2:将字符串转为列表 step3:统计列表中1出现的个数
相关推荐