I was wondering if/how I could assign a variable to each outputted value from a colorsys conversion.
>>conversion = colorsys.rgb_to_hsv(RC, GC, BC)
>>print(conversion)
>>#outputted data
>>(H,S,L)
Essentially I would like to use the outputted data in further variable dependent calculations using the H value the S value and the L value.
Sorry if my question is hard to understand I am new to python and not sure how to word my question without making it confusing.
Thanks in advance