binary int to string python code example
Example 1: convert int to binary python
# Python program to convert decimal to binary
# Function to convert Decimal number
# to Binary number
def decimalToBinary(n):
return bin(n).replace("0b", "")
# Driver code
if __name__ == '__main__':
print(decimalToBinary(8))
print(decimalToBinary(18))
print(decimalToBinary(7))
Output:
1000
1001
Example 2: python binary to string
testing = "Satana Blabbers".encode() # string to bytes
# now bytes to string
print(testing.decode(), testing.decode('utf-8')) # both are same