

This is an interesting operator: The Exclusive OR or shortly XOR. Print bin(inputA | inputB) # Execute bitwise logical OR and print result in binary Print bin(inputB) # prints inputB in binary Print bin(inputA) # prints inputA in binary InputB = int( '00101101', 2) # define binary number A sequence of bits can simply be executed like this: inputA = int( '00100011', 2) # define binary number

This tiny amount of information, the smallest amount of information that you can store in a computer, is known as a bit. You can think of this as a light switch: Either the switch is on or it is off. Python Programming Bootcamp: Go from zero to heroĪt the lowest level, the computer has no notion whatsoever of numbers except ‘there is a signal’ or ‘these is not a signal’. In this article you will learn how to use binary numbers in Python, how to convert them to decimals and how to do bitwise operations on them. More detailed: While this is not directly useful in web applications or most desktop applications, it is very useful to know. In this article you will learn how numbers work inside the computer and a some of magic to go along with that :-) We have looked at simple numbers and operations before.
