Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
183 views
in Technique[技术] by (71.8m points)

python - Accessing values in nested dictionary

Nested dictionary has a length of 12, this is one of the records:

{('ALEXANDER', 'MALE'): {'2010': ('2619', None), '2011': ('2494', None), '2009': ('2905', None)}, ...

Main key = ('ALEXANDER', 'MALE')

Main value (which is nested dictionary) = {'2010': ('2619', None), '2011': ('2494', None), '2009': ('2905', None)}

Nested dictionary key/value = '2010': ('2619', None) ...

How would one access the year '2010' and the value '2619'?

Is it possible to do this using variables?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

If D = {'2010': ('2619', None), '2011': ('2494', None), '2009': ('2905', None)}

Then D.keys() return the list of keys in the dictionary ['2009', '2011', '2010']

Then you can access to the value 2010 by D.keys()[-1] and to 2619 by D[D.keys()[-1]][0]


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...