int()
and list slice notation to get the RGB components from the hexadecimal string.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)
Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️