如何在 Python 中反转 float.hex() 方法

问题描述

有没有办法在 Python 中反转 hex()float 方法?例如,

n = 1280.03125
n_hex = n.hex() 
print(n_hex)  # result--> 0x1.4002000000000p+10    

如何将 0x1.4002000000000p+10 转换回 1280.03125?我知道您可以使用 int(num,base) 将数字转换为整数,但它不支持小数。

解决方法

试试float.fromhex(str)

>>> float.fromhex("0x1.4002000000000p+10")
1280.03125