Answers for "hex to binary python3"

0

hex to binary python3

my_hexdata = "1a"

scale = 16 ## equals to hexadecimal

num_of_bits = 8

bin(int(my_hexdata, scale))[2:].zfill(num_of_bits)
Posted by: Guest on May-08-2020

Python Answers by Framework

Browse Popular Code Answers by Language