How can I perform a conversion of a binary string to the corresponding hex value in Python?
I have 0000 0100 1000 1101 and I want to get 048D I'm using Python 2.6.
|
|
|
Welcome to StackOverflow!
The doc of
The doc of
|
|||||||||
|
|
Converting Binary into hex without ignoring leading zeros: You could use the format() built-in function like this:
|
||||
|
|
|
|||||
|
|
Assuming they are grouped by 4 and separated by whitespace. This preserves the leading 0.
|
|||||
|
|
or
|
|||||||||||
|