“Hex para python3 binário” Respostas de código

Python converte hexadecimal em binário

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 para python3 binário

my_hexdata = "1a"

scale = 16 ## equals to hexadecimal

num_of_bits = 8

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

Respostas semelhantes a “Hex para python3 binário”

Perguntas semelhantes a “Hex para python3 binário”

Mais respostas relacionadas para “Hex para python3 binário” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código