Converting hex to RGB ; 1. def hex_to_rgb(hex): ; 2. rgb = [] ; 3. for i in (0, 2, 4): ; 4. decimal = int(hex[i:i+2], 16) ; 5. rgb.append(decimal).
確定! 回上一頁