Hi and thank you so much for your help!
I am sure this is a dumb question but I am trying to append a dictionary value with the elements within an array. Right now I can only get it to load the entire array of elements as one entry instead of separate values. Sorry if I am not explaining this well. Here is an example:
Array = [4,5,6]
dictionary {'index'} = [1,2,3]
Here is what I am doing and it's wrong
dictionary['index'].append(array)
It's wrong because if I inquiry how many elements are in dictionary ['index'][1] it returns 1 instead of 3. Look here:
print range(len(dictionary['index'][0]))
The answer is 3, thats 1 2 and 3. however!
print range(len(dictionary['index'][1]))
The answer is 1, [4,5,6]. I must be loading the array in incorrectly. Does anyone know what I am doing wrong? Thanks!