Files
30-seconds-of-code/snippets/to_hex.md
Angelos Chalaris fad8bd3e8a Update covers
2023-02-16 22:24:35 +02:00

373 B

title, tags, cover, firstSeen, lastUpdated
title tags cover firstSeen lastUpdated
Number to hex math green-plant 2020-10-09T09:45:47+03:00 2020-10-09T09:45:47+03:00

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