Python运算符 - 右移

在Python中,右移运算符(>>)用于将一个数字的位向右移动指定的位数。

✏️ 语法

Python
number >> shift

在上面的代码中,number是要移动位的数字,shift是要向右移动位数。

📘 示例

Python
# 向右移动1位
number = 10
shift = 1
result = number >> shift
print(result)  # 输出:5

# 向右移动2位
number = 16
shift = 2
result = number >> shift
print(result)  # 输出:4

在上面的代码中,我们有两个使用右移运算符的示例。
在第一个示例中,我们将数字10向右移动1位,结果为5。
在第二个示例中,我们将数字16向右移动2位,结果为4。