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 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…