>>= Bitwise Right Shift Assignment

Description

Performs bitwise right shift and assigns value to the left operand.

Syntax

A >>= B

A
Integer object.
B
Integer object.

Return Value

#TODO

Time Complexity

#TODO

Remarks

Equivalent to A = A >> B.

Example

>>> b = 0b1111
>>> b >>= 1
>>> bin(b)
'0b111'

See also

#TODO