Python says
1 << 16 = 65536
What operation does << performs in Python?
<<
<< it's the left-shift operator in Python. Take a look at the documentation for further details.