I am making a datastructure that basically acts like a python dictionary but it has 3 keys and one ouput.
For instance I have a nXn matrix and a few tags that possibly go with it.
So my pseudocode acts like:
my_dict[(2, 2, NN)] = 1.0
my_dict[(2, 4, NN)] = .12
my_dict[(0, 1, VP)] = .14
my_dict[(1, 1, VB)] = 1.0
What kind of data structure in python would work for that? (what should my_dict be)