+ 2
how can Python execute this expression plzzz "print(4>>3)" ? what is the role of ">>"
question
2 Respuestas
+ 2
>> is bit-shifting operator, 4 is shifted 3 bits do the right.
4 - number to be shifted
>> - direction of shift
3 - number of bits
More:
https://stackoverflow.com/questions/3411749/JUMP_LINK__&&__python__&&__JUMP_LINK-operator
+ 2
yes exactly thanks may friend