News

+++ title = "Using Python for hex, strings, bytes and integers" date = 2019-10-10T21:27:52+11:00 draft = false tags = [] categories = [] +++ I've taken an interest recently in cryptography, strings, ...
Hex to RGB Converting a hexadecimal color code to a tuple of integers corresponding to its RGB components is fairly simple, All you need to do is use a list comprehension in combination with int() and ...