How could I get this working?
color_table = {"Red":[1,2,3], "Blue":[4,5,6]}
How can I access values individually?
color_table[Red].0 = 1
color_table[Red].1 = 2
color_table[Red].2 = 3
color_table[Blue].0 = 4
color_table[Blue].1 = 5
I want to assign these values to a variable. For ex:
x = color_table[Red].0