标签: python operators bit-manipulation shift
可能重复: How to get the logical right binary shift in python
如何在python中执行无符号右移?
即。 java的等价物如下:
x >>> y or x >>>= y
答案 0 :(得分:11)
Java中的整数具有固定数量的位,但Python中的整数没有,因此在Python中无符号右移将毫无意义。