我想從我的字典中只獲取「代碼」值,但不知道我是否正確。理想的情況是我出認沽應該是唯一的代碼只從字典中獲取特定值
peq = {
'sg':{'code':9, 'perror':0},
'6e':{'code':17, 'perror':0},
'g8':{'code':25, 'perror':0},
'i7':{'code':33, 'perror':0},
'9h':{'code':41, 'perror':0},
'it':{'code':49, 'perror':0},
'ic':{'code':57, 'perror':0},
'9w':{'code':65, 'perror':0},
's2':{'code':73, 'perror':0},
'ai':{'code':81, 'perror':0}
}
for the_value['code'], in peq.iteritems():
print the_value
你是什麼意思你不知道?它工作與否? – Maroun
'print the_value ['code']''而不是'print the_value' –