up vote 7 down vote favorite
1
share [g+] share [fb]

I have a binary file that I have to parse and I'm using Python. Is there a way to take 4 bytes and convert it to a single precision floating point number?

link|improve this question

76% accept rate
feedback

4 Answers

up vote 11 down vote accepted
>>> import struct
>>> struct.pack('f', 3.141592654)
'\xdb\x0fI@'
>>> struct.unpack('f', '\xdb\x0fI@')
(3.1415927410125732,)
>>> struct.pack('4f', 1.0, 2.0, 3.0, 4.0)
'\x00\x00\x80?\x00\x00\x00@\x00\x00@@\x00\x00\x80@'
link|improve this answer
This only works for 4 or 8 byte floats. What about 10-byte floats? – dplass Mar 3 '11 at 3:09
I found a reference elsewhere, thanks. – dplass Mar 8 '11 at 16:11
feedback

You want the struct package.

link|improve this answer
5  
Add a bit of demonstration code and I'll upvote. – John Mulder Jan 9 '09 at 5:44
feedback

You should definitely give Construct a try. Like struct it allows to translate binary data to Python object and vice versa, but offers a lot more features.

Really great for parsing protocol data, legacy binary file formats and such.

link|improve this answer
feedback

Edit: Forget what I said. But it looks like GotAPI has what you are looking for.

GotAPI is a great resource for finding out all those built in functions that you may not already know about.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.