in python ____ is a term used to describe an ordered set
Answers
Answered by
0
Answer:
Python has an ordered dictionary
Answered by
0
Answer:
An ordered set is functionally a special case of an ordered dictionary. The keys of a dictionary are unique. Thus, if one disregards the values in an ordered dictionary (e.g. by assigning them None ), then one has essentially an ordered set. As of Python 3.1 and 2.7 there is collections. OrderedDict .
Similar questions