while using bin in python the output is 0b how to remove it code example
Example: python binary remove 0b
a = bin(17)
b = bin(17)[2:]
#to format to 8-bits
c = b.zfill(8)
a = bin(17)
b = bin(17)[2:]
#to format to 8-bits
c = b.zfill(8)