Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Python Ordered Dictionary

from collections import OrderedDict

# Remembers the order the keys are added!
x = OrderedDict(a=1, b=2, c=3)
Source by www.geeksforgeeks.org #
 
PREVIOUS NEXT
Tagged: #Python #Ordered #Dictionary
ADD COMMENT
Topic
Name
4+6 =