nested dictionary
Python05 :: python nested dictionary
Python05 :: python nested dictionary
2020.08.13ㅡ. Python nested dictionary 우리가 일반적으로 알고 있는 dictionary 는 python에서 dictionary = { 'key1' : 'value', 'key2' : 'value' } 형태가 있습니다. 여기에서 nested_dict = { 'dictA' : { 'nested_key1' : 'nested_value'}, 'dictB' : {'nested_key2' : 'nested_value2'} } nested dictionary에 접근할 때는 다음과 같이 접근하게 됩니다. print(dictionary['dictA']['nested_key1']) => 'nested_value' nested dictionary에 추가할 때는 다음과 같습니다. dictionary['dictC']..