+ 2
The boolean keywords are used to connect two conditions to one, for example:
if x<5 and y>7:
....
(Both conditions must be true.)
The bitwise operators are used like +, - or something to perform on (most of the time) two numbers, so it's a totally different thing.



