Skip to content

Instantly share code, notes, and snippets.

@richardnfag
Created November 16, 2019 01:10
Show Gist options
  • Save richardnfag/6dbd4d65f8cc05990ab5738f933c4d52 to your computer and use it in GitHub Desktop.
Save richardnfag/6dbd4d65f8cc05990ab5738f933c4d52 to your computer and use it in GitHub Desktop.
Python RGB Value to Hex Code
def rgb_to_hex(rgb):
return ''.join(list(
map(
lambda x: format(int(x), '02X'),
rgb.split(',')
)
))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment