私は何が欠けていますか?私は次のような口述の口述(その場で作成された)を持っています:
googlers = 3
goog_dict = {}
dict_within = {'score':[], 'surprise':''}
for i in xrange(googlers):
name = "goog_%s" %i
goog_dict[name] = dict_within
今、私はいくつかのデータを追加したい:
tot =[23,22,21]
best_res = 8
for i in xrange(len(tot)):
name = "goog_%s" %i
print name
rest = tot[i] - best_res
if rest % 2 == 0:
trip = [best_res, rest/2, rest/2]
elif rest % 2 != 0:
rest_odd = rest / 2
fract_odd = rest - rest_odd
trip = [best_res, rest_odd, fract_odd]
if (max(trip) - min(trip)) == 2:
surpr_state = True
elif (max(trip) - min(trip)) < 2:
surpr_state = False
goog_dict[name]['score'].append(trip)
goog_dict[name]['surprise'] = surpr_state
私の出力は次のようになると思います:
{'goog_2': {'surprise': True, 'score': [8, 7, 8]}, 'goog_1':{'surprise': True, 'score': [8, 7, 7]}, 'goog_0': {'surprise': True, 'score': [8, 6, 7]}}
しかし、私が得るのはこれです:
{'goog_2': {'surprise': True, 'score': [[8, 7, 8], [8, 7, 7], [8, 6, 7]]}, 'goog_1':{'surprise': True, 'score': [[8, 7, 8], [8, 7, 7], [8, 6, 7]]}, 'goog_0': {'surprise': True, 'score': [[8, 7, 8], [8, 7, 7], [8, 6, 7]]}}
では、現在の dict だけでなく、すべてのtrip
dict にリストが追加されるのはなぜですか?name