BITWISE OPERATOR IN PYTHON
The bitwise operator in python performs bit by bit operation on the values of the two operands. If we assign a = 5 and b = 4 then in bitwise operations a stores the value as 0101 and b as 0100. suppose we are going to do binary and (&) on a and b :
BITWISE OPERATOR IN PYTHON Read More >>