Answers for "hexa to rgb python"

0

hex to rgb python

h = input('Enter hex: ').lstrip('#')
print('RGB =', tuple(int(h[i:i+2], 16) for i in (0, 2, 4)))
Posted by: Guest on March-13-2021

Python Answers by Framework

Browse Popular Code Answers by Language