Home
Python
2D
Application
Buildin Function
Class
Data Structure
Data Type
Database
Development
Dictionary
Event
Exception
File
Function
GUI Pmw
GUI Tk
Language Basics
List
Math
Network
String
System
Thread
Tuple
Utility
XML
Menu
Bit calculation: shift left : Bit « Data Type « Python
Python
Data Type
Bit
Bit calculation: shift left
x = 1 # 0001 x << 2 # shift left 2 bits: 0100 print x
Related examples in the same category
1.
Bitwise or
2.
bitwise AND