Answers for "python convert a number to binary"

2

decimal to binary in python

a = 10
#this will print a in binary
bnr = bin(a).replace('0b','')
x = bnr[::-1] #this reverses an array
while len(x) < 8:
    x += '0'
bnr = x[::-1]
print(bnr)
Posted by: Guest on June-02-2020
4

python int to binary

print('{0:b}'.format(3))        # '11'
print('{0:8b}'.format(3))       # '      11'
print('{0:08b}'.format(3))      # '00000011'

def int2bin(integer, digits):
    if integer >= 0:
        return bin(integer)[2:].zfill(digits)
    else:
        return bin(2**digits + integer)[2:]
print(int2bin(3, 6))            # '000011'
Posted by: Guest on May-13-2021
0

Python int to binary string

# The int is 37
print("{0:b}".format(37))
# Output - '100101'
Posted by: Guest on January-12-2022

Code answers related to "python convert a number to binary"

Python Answers by Framework

Browse Popular Code Answers by Language