Bit Operations

You'll learn about the different bit operators present in Python in this lesson.

We'll cover the following...

Bit operators overview

The following bit operators may be applied to integers.

Bit Operator Description
~ Bitwise complement
& Bitwise and
| Bitwise or
^ Bitwise exclusive or
<< Left shift
>> Right shift
...