How to convert the following hex string to float (single precision 32-bit) in python?
"41973333" -> 1.88999996185302734375E1
"41995C29" -> 1.91700000762939453125E1
"470FC614" -> 3.6806078125E4
Thanks
|
|
|
|
|
|
|
Update: see comment on how to do this in Python 3. |
||||
|
|
|
Slice up the hex strings into 2-character chunks (bytes), make each chunk into the right byte with int formatting, struct.unpack when done. I.e.:
emitting, as desired:
|
||
|
|
|
|
I recommend using the ctypes module which basically lets you work with low level data types. In your case you could say
I believe that the In C if you had an int and wanted to interpret its bits as a float, you'd do roughly the same thing, taking a pointer and then casting and dereferencing it:
and that's exactly what the Python code using the |
||
|
|
|
|
I'm guessing this question relates to this one and you are working with 4 bytes rather than 8 hex digits.
If you do need to deal with the string of hexdigits rather than the actual bytes, you can use
|
|||
|
|