+ 1
i don't know if it is in python (but probably is), but in java and c++ it is bit shift right
when you write a>>>2, the result is value of a with all bits in a are moved two places right and the last two are moved to the front (it is rotated)
00010010 -> 10000100