I would like to know how I can assign a dictionary to a set of objects.
For example, I have a 4x4 vector of 'neuron' objects:
[[<__main__.Neuronio object at 0x1035644e0>, <__main__.Neuronio object at 0x103564518>, <__main__.Neuronio object at 0x103564550>, <__main__.Neuronio object at 0x103564588>], [<__main__.Neuronio object at 0x1035645c0>, <__main__.Neuronio object at 0x1035645f8>, <__main__.Neuronio object at 0x103564630>, <__main__.Neuronio object at 0x103564668>], [<__main__.Neuronio object at 0x1035646a0>, <__main__.Neuronio object at 0x1035646d8>, <__main__.Neuronio object at 0x103564710>, <__main__.Neuronio object at 0x103564748>], [<__main__.Neuronio object at 0x103564780>, <__main__.Neuronio object at 0x1035647b8>, <__main__.Neuronio object at 0x1035647f0>, <__main__.Neuronio object at 0x103564828>]]
And I would like to work with the respective dictionary as if working with the dictionary ('1') would have referenced the map [0] [0], main object. Neuronio object at 0x1035644e0 > and so on consecutively to dictionary (2 ... 3 ... n) referencing the objects of the array.