filmov
tv
Python Quiz 46 #pythonoperators #learningpython
Показать описание
In Python,
What will be the output of
the following Python code?
x = 5 # 0101 in binary
y = 3 # 0011 in binary
result = x & y # Bitwise AND
print(result)
Bitwise Operators #pythonoperators #learningpython #python
What will be the output of
the following Python code?
x = 5 # 0101 in binary
y = 3 # 0011 in binary
result = x & y # Bitwise AND
print(result)
Bitwise Operators #pythonoperators #learningpython #python