Answers for "hex colour code to rgb python"

1

hex to rgb python

def hex2rgb(color):
  hex = color.lstrip('#')
  rgb = tuple(int(hex[i:i+2], 16) for i in (0, 2, 4))
  
  return rgb

hex_color = "#B4FBB8"
rgb_color = hex2rgb(hex_color)

print(rgb_color)
#(180, 251, 184)
Posted by: Guest on June-16-2021

Python Answers by Framework

Browse Popular Code Answers by Language