Answers for "decimal to binary function in python"

3

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
1

Python int to binary

integer = 7
bit_count = 5
print(f'{integer:0{bit_count}b}') # 0 filled
Posted by: Guest on August-15-2021

Code answers related to "decimal to binary function in python"

Python Answers by Framework

Browse Popular Code Answers by Language