py convert binary to decimal code example
Example 1: how to convert decimal to binary python
a = 5
#this prints the value of "a" in binary
print(bin(a))
Example 2: py convert binary to int
# Convert integer to binary
>>> bin(3)
'0b11'
# Convert binary to integer
>>> int(0b11)
3
Example 3: binary to decimal python
format(decimal ,"b")