QuestionQ16
Python BasicsWhat is the output of this line of code entered in a Python interactive session?
>>> print(bin(0b101010 ^ 0b111000))
- A 0b10101
- B 18
- C 0b10010
- D 0b101101
What is the output of this line of code entered in a Python interactive session?
>>> print(bin(0b101010 ^ 0b111000))
Community Discussion