Python says
1 << 16 = 65536
What operation does << performs in Python?
|
|
It is the left shift operator for Python. A left shift operation, as the name says, move bits to the left. Suppose you have 2 whose binary representation is 0010.
So 0010 -> 0100 -> 1000 1000 is the binary representation for 8. Mathematically, left shifting is the same as multiplying a number by a power of 2 : |
|||||
|
|
|
|||
|
|
|
Another way to think about it is 1 times 2^16. So whenever you see x << y interpret it as: x * 2^y |
|||
|
|