The struct module is useful when you're trying to convert data to and from binary formats. However, recently I came across a file format specification that uses the binary16 floating point format. I looked through the Python documentation, but can't find anything that can convert to and from it. What would be the best way to convert this data to/from Python floats?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
|
|
You can do it roughly like you'd do it in C -- i.e., I think, roughly like this...:
|
|||
|
|
|
This guy's blog post gives an implementation in both and python. He uses the |
|||
|
|
|
A quick Google search turned up http://packages.python.org/bigfloat/ which says it has a context for manipulation of |
|||
|
|