MINDWAREZONE
Bitwise operators work with binary numbers.
Example
a = 5 b = 3 print(a & b) print(a | b)
Output:
1 7