Bitwise Operations

In Python, bitwise operators are used to perform bitwise calculations on integers. The integers are first converted into binary and then operations are performed on bit by bit, hence the name bitwise operators. The standard bitwise operations are demonstrated below. 

Note: For more information, refer to Python Bitwise Operators

Example:

Python3




# Code to demonstrate bitwise operations
# Some bytes to play with
byte1 = int('11110000', 2# 240
byte2 = int('00001111', 2# 15
byte3 = int('01010101', 2# 85
  
# Ones Complement (Flip the bits)
print(~byte1)
  
# AND
print(byte1 & byte2)
  
# OR
print(byte1 | byte2)
  
# XOR
print(byte1 ^ byte3)
  
# Shifting right will lose the 
# right-most bit
print(byte2 >> 3)
  
# Shifting left will add a 0 bit 
# on the right side
print(byte2 << 1)
  
# See if a single bit is set
bit_mask = int('00000001', 2# Bit 1
  
# Is bit set in byte1?
print(bit_mask & byte1)
  
# Is bit set in byte2?
print(bit_mask & byte2)


Output:

-241
0
255
165
1
30
0
1

Working with Binary Data in Python

Alright, lets get this out of the way! The basics are pretty standard: 

  1. There are 8 bits in a byte
  2. Bits either consist of a 0 or a 1
  3. A byte can be interpreted in different ways, like binary octal or hexadecimal

Note: These are not character encodings, those come later. This is just a way to look at a set of 1’s and 0’s and see it in three different ways(or number systems).

Examples: 

Input : 10011011 
 
Output :
1001 1011 ---- 9B (in hex)
1001 1011 ---- 155 (in decimal)
1001 1011 ---- 233 (in octal)

This clearly shows a string of bits can be interpreted differently in different ways. We often use the hex representation of a byte instead of the binary one because it is shorter to write, this is just a representation and not an interpretation.

Similar Reads

Encoding

Now that we know what a byte is and what it looks like, let us see how it is interpreted, mainly in strings. Character Encodings are a way to assign values to bytes or sets of bytes that represent a certain character in that scheme. Some encodings are ASCII(probably the oldest), Latin, and UTF-8(most widely used as of today. In a sense encodings are a way for computers to represent, send and interpret human readable characters. This means that a sentence in one encoding might become completely incomprehensible in another encoding....

Python and Bytes

From a developer’s point of view, the largest change in Python 3 is the handling of strings. In Python 2, the str type was used for two different kinds of values – text and bytes, whereas in Python 3, these are separate and incompatible types. This means that before Python3 we could treat a set of bytes as a string and work from there, this is not the case now, now we have a separate data type, called bytes. This data type can be briefly explained as a string of bytes, which essentially means, once the bytes data type is initialized it is immutable....

Bitwise Operations

...

Some Other Applications

...

Contact Us