gpt4 book ai didi

python - 格式化要打印 2 位数字的十六进制?

转载 作者:行者123 更新时间:2023-12-03 23:45:57 25 4
gpt4 key购买 nike

python 中的内置函数 hex() 以 0xf 或 0x0 的形式返回一个数字,但我希望它们为 0x00。我找到了 this on the python docs但真的不知道如何解释它。
谢谢

最佳答案

在python3中,使用这个f字符串格式:

f"0x{variable:02x}"
为获得最大的 python2/3 兼容性,请使用 .format() :
"0x{:02x}".format(variable)

关于python - 格式化要打印 2 位数字的十六进制?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62762447/

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