What is the output of the following code ?
print(bin(0x16))
0x16 represent a hexadecimal number which integer value is 22.bin(22)converts integer 22 to 10110 and it prints 0b10110 on console
bin(22)
Comment here: