Bit Operations

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

Bit operators overview

The following bit operators may be applied to integers.

Bit Operator Description
~ Bitwise complement
& Bitwise and
| Bitwise or
^ Bitwise exclusive or
...