30秒学会 Python 片段 · 2022年6月11日

30秒学会 Python 片段 – Number to hex

Returns the hexadecimal representation of the given number.

  • Use hex() to convert a given decimal number into its hexadecimal equivalent.

代码实现

def to_hex(dec):
  return hex(dec)

使用样例

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

翻译自:https://www.30secondsofcode.org/python/s/to-hex