Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python multidimensional dictionary

from collections import defaultdict

new_dic = defaultdict(dict)
new_dic[1][2] = 5
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #python #multidimensional #dictionary
ADD COMMENT
Topic
Name
3+1 =