Zero fill right shift in python
20:50 05 Mar 2019
function(e, t) {
    return e << t | e >>> 32 - t
}

I have this method in js, I do not understand in deep about shift operation. I want to write that in python. How can I write the equivalent code in python as it does not support Zero Fill Right Shift Operator as in JS >>>.

javascript python-3.x bit-shift