Python conversion from binary string to hexadecimal

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.

Leave a Comment