1.88999996185302734375E1 "41995C29" -> 1.9-6ren">
gpt4 book ai didi

python - 将十六进制转换为 float

转载 作者:IT老高 更新时间:2023-10-28 21:56:34 26 4
gpt4 key购买 nike

如何在 Python 中将以下十六进制字符串转换为 float (单精度 32 位)?

"41973333" -> 1.88999996185302734375E1

"41995C29" -> 1.91700000762939453125E1

"470FC614" -> 3.6806078125E4

最佳答案

Python 3 中:

>>> import struct
>>> struct.unpack('!f', bytes.fromhex('41973333'))[0]
18.899999618530273
>>> struct.unpack('!f', bytes.fromhex('41995C29'))[0]
19.170000076293945
>>> struct.unpack('!f', bytes.fromhex('470FC614'))[0]
36806.078125

Python 2 中:

>>> import struct
>>> struct.unpack('!f', '41973333'.decode('hex'))[0]
18.899999618530273
>>> struct.unpack('!f', '41995C29'.decode('hex'))[0]
19.170000076293945
>>> struct.unpack('!f', '470FC614'.decode('hex'))[0]
36806.078125

关于python - 将十六进制转换为 float ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1592158/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com