Tagged Questions
4
votes
3answers
213 views
Is there any alternative of Dictionary in .NET?
I have a requirement of using a dictionary in the project but as we know that they are only accessible using the keys and not using the indexes, and I want to access the items in dictionary using ...
3
votes
2answers
1k views
What is the best ordered dict implementation in python?
I've seen (and written) a number of implementations of this. Is there one that is considered the best or is emerging as a standard?
What I mean by ordered dict is that the object has some concept of ...
0
votes
2answers
67 views
Order of values when extracting Python dict to list
I am trying to get all values (except corresponding to a particular key) from a list of dicts by doing this:
fv = [[v for (k,v) in d.iteritems() if k is not 'xKey'] for d in someDict]
where ...
0
votes
4answers
92 views
Get first N key pairs from an Ordered Dictionary to another one in python
I have an ordered dictionary (OrderedDict) sorted by value. How can I get the top (say 25) key values and add them to a new dictionary?
For example: I have something like this
...