十进制数转十六进制

返回给定数字的十六进制表示。

  • 使用hex()将给定的十进制数转换为其十六进制等价物。
def to_hex(dec):
  return hex(dec)

to_hex(41) # 0x29
to_hex(332) # 0x14c