calculate number from binary in python code example
Example 1: how to get the binary value in python
bin(19)
def binary(num):
array = []
while(num > 0):
sol1 = num / 2
check = sol1 - int(sol1)
if(check > 0):
array.append("1")
num = sol1 - 0.5
else:
array.append("0")
num = sol1
while(len(array) < 4):
array.append("0")
array = array[::-1]
string = ''.join(array)
return string
Example 2: how to calculate binary AND, OR, XOR in python
>>>
>>> a = 2
>>> b = 8
>>> a ^= b
>>> b ^= a
>>> a ^= b
>>> a
8
>>> b
2