题解 | #求int型正整数在内存中存储时1的个数#
求int型正整数在内存中存储时1的个数
http://www.nowcoder.com/practice/440f16e490a0404786865e99c6ad91c9
Python3
item = int(input()) # 输入整数
print(str(bin(item)).count('1')) # 输出,将int转化为二进制后,再str后,此时0xffffff已经变为字符串'0xffffff'。
求int型正整数在内存中存储时1的个数
http://www.nowcoder.com/practice/440f16e490a0404786865e99c6ad91c9
item = int(input()) # 输入整数
print(str(bin(item)).count('1')) # 输出,将int转化为二进制后,再str后,此时0xffffff已经变为字符串'0xffffff'。
相关推荐