how to convert one binary nuber into other binary nuber in python code example
Example: how to convert decimal to binary python
a = 5
#this prints the value of "a" in binary
print(bin(a))
a = 5
#this prints the value of "a" in binary
print(bin(a))