1 Réponse
+ 1
Bitwise operators perform on bites and output bites so when using bitwise and on 6 (0110) and 5 (0101) you get 4 (0100) but using logical operators you would simply get True (both 5 and 6 are not 0).
Bitwise examples:
AND
1111 & 1001 = 1001
0110 & 1011 = 0010
OR
1111 | 0000 = 1111
1010 | 0100 = 1110