Let\'s say that I have a Python dictionary, but the values are a tuple:
E.g.
dict = {\"Key1\": (ValX1, ValY1, ValZ1), \"Key2\": (ValX2, ValY2, ValZ2
Just keep indexing:
>>> D = {"Key1": (1,2,3), "Key2": (4,5,6)} >>> D["Key2"][2] 6