Hex to RGB

Python, String, Math · Sep 15, 2020

Converts a hexadecimal color code to a tuple of integers corresponding to its RGB components.

  • Use a list comprehension in combination with int() and list slice notation to get the RGB components from the hexadecimal string.
  • Use tuple() to convert the resulting list to a tuple.
def hex_to_rgb(hex):
  return tuple(int(hex[i:i+2], 16) for i in (0, 2, 4))
hex_to_rgb('FFA501') # (255, 165, 1)

More like this

  • Python Math

    Learn how to perform common mathematical operations in Python 3.6 with this snippet collection.

    Collection · 37 snippets

  • RGB to hex

    Converts the values of RGB components to a hexadecimal color code.

    Python, String · Nov 2, 2020

  • String to words

    Converts a given string into a list of words.

    Python, String · Nov 2, 2020

  • String to slug

    Converts a string to a URL-friendly slug.

    Python, String · Oct 25, 2020