Files
Angelos Chalaris 4d0316a062 Update covers
2023-05-07 22:25:00 +03:00

373 B

title, type, language, tags, cover, dateModified
title type language tags cover dateModified
Number to hex snippet python
math
beach-overview 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