Posts pythonTip 13 光棍的悲伤
Post
Cancel

pythonTip 13 光棍的悲伤

题目描述:

光棍们对1总是那么敏感,因此每年的11.11被戏称为光棍节。小Py光棍几十载,光棍自有光棍的快乐。让我们勇敢地面对光棍的身份吧,现在就证明自己:给你一个整数a,数出a在二进制表示下1的个数,并输出。

例如:a=7

则输出:3

分析

这个没有啥好分析的,数一下 该数二进制下,1 的个数吧。 使用 位运算就好,位运算 666

另外: 我单身,但是我,emmmm, 确实悲伤。


res = 0
while a:
    res += (a & 1)
    a >>= 1
print(res)
This post is licensed under CC BY 4.0 by the author.
Trending Tags
Contents

pythonTip 12 结尾非零数的奇偶性

pythonTip 14 Python之美

Trending Tags