When using this code
import bitstring
f = 1.0e+00
b = bitstring.pack('>d', f)
b.bin
I get 64 bits
001111111111000000000000000000000000000000000000000000000000000
But I need to get Float (IEEE754 Single precision 32-bit)
What is the >d used for?