これが私がやろうとしていることです:
すでに与えられているデータセットを考えてみましょう:
dictionary = {'products': [{'a': '1', 'b': '2', 'c': '3', 'd': '4', [...]}
次のようにディクショナリの数値を取得できます: dictionary['products'][0]['style]
「製品」を変数に格納し、2 番目のキー (a、b、c、d など) を別の変数に格納しようとしています。
x = (dictionary.keys())
x = "'"+x[0]+"'"
keys = dictionary['products'][0].keys()
私の最終目標はこれです:
for i in xrange(number_of_products - 1):
for j in xrange(len(keys) - 1):
values[i][j] = dictionary[x][i][keys[j]] ##ERROR Here when I try to index using key[j]