我正在尝试使用(Python 2.7)以下方法将十六进制值转换为浮点数:
def hex2float(x):
y = 0
z = x.decode('hex')
try:
y = struct.unpack('!f', z)[0]
except:
print sys.exc_info()[1]
print 'z = ' + z
print 'y = %s' % (y)
print 'x = ' + x
return
def foo28():
x = '615885' #8.9398e-039
hex2float(x)
输出如下:
unpack requires a string argument of length 4
z = aXà
y = 0
x = 615885
我注意到我收到了非常小的值的异常消息。对于这种情况,是否有适当的方法将十六进制值转换为浮点值。