0010 1101 1011 0100 0111 1100 1000 0101
i would like to right shift 26,but failed
print(bin(00101101101101000111110010000101) >> 26)
and the debug error is SyntaxError: invalid token
right shift 26 should be return 1011
how about this?
0010 1101 1011 0100 0111 1100 1000 0101
Shift 0010 1101 1011 0100 0111 1100 1000 0101>>22 returns 10110110 And with 00001111 returns 0110 converts to decimal 6 ?
with 00001111?how to do this with 00001111?