Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 如何在 python 中获得逻辑正确的二进制移位
如何在 python 中执行无符号右移?
IE 等效的 java 是这样的:
x >>> y or x >>>= y
Java 中的整数具有固定位数,但 Python 中没有,因此无符号右移在 Python 中毫无意义。