“Python Convertir Hex en binario” Código de respuesta

Python Convertir Hex en binario

my_hexdata = "1a"

scale = 16 # equal to hexadecimal

bin(int(my_hexdata, scale))[2:].zfill(len(my_hexdata)*4)
# By changing the parameter of the zfill function we allow for any length of
# hexadecimal code, which is more useful when using this code.
Rolkin

Hex a Binario Python3

my_hexdata = "1a"

scale = 16 ## equals to hexadecimal

num_of_bits = 8

bin(int(my_hexdata, scale))[2:].zfill(num_of_bits)
CodeHelper

Respuestas similares a “Python Convertir Hex en binario”

Preguntas similares a “Python Convertir Hex en binario”

Más respuestas relacionadas con “Python Convertir Hex en binario” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código