RSHIFTresult = x RSHIFT nPerforms a bitwise operation that shifts all the bits of x to the right by an amount of n.Examplen = 0b1100 rshift 2 print bin(n) ' Output: 11 n = 0b1100 rshift 3 print bin(n) ' Output: 1