Hallo all there,
maby I don't see the forest because of all that trees, but :
from struct import *
# how can I convert
f = float(0.5)
# with
bin_str = pack('!f', 0.5)
# now bin_str is '?\x00\x00\x00'
# to "3F000000" ?????
Thanks a lot for any help
maby I don't see the forest because of all that trees, but :
from struct import *
# how can I convert
f = float(0.5)
# with
bin_str = pack('!f', 0.5)
# now bin_str is '?\x00\x00\x00'
# to "3F000000" ?????
Thanks a lot for any help
Comment