Tagged Questions
The dictionaries tag has no wiki summary.
5
votes
2answers
104 views
finding difference between two dictionaries
Is there a LINQ method to find difference between two generic dictionaries?
Same as in this question, but with generic dictionaries.
5
votes
2answers
97 views
Inverting Dictionaries in Python
I want to know which would be an efficient method to invert dictionaries in python. I also want to get rid of duplicate values by comparing the keys and choosing the larger over the smaller assuming ...
5
votes
5answers
164 views
Does the 'in' clause used on python dictionaries call the keys() function every time?
Let's say I have a
dict = {...} #lots of words in dictionary
I have to do a
for word in ...: #long list of words
if word in dict:
#do something
My question is, does the 'if ...
4
votes
6answers
111 views
What's the most pythonic way to merge 2 dictionaries, but make the values the average values?
d1 = { 'apples': 2, 'oranges':5 }
d2 = { 'apples': 1, 'bananas': 3 }
result_dict = { 'apples': 1.5, 'oranges': 5, 'bananas': 3 }
What's the best way to do this?
4
votes
9answers
426 views
Match set of dictionaries. Most elegant solution. Python
Given two lists of dictionaries, new one and old one. Dictionaries represent the same objects in both lists.
I need to find differences and produce new list of dictionaries where will be objects from ...
4
votes
2answers
312 views
How do I convert this list of dictionaries to a csv file? [Python]
I have a list of dictionaries that looks something like this:
toCSV = [{'name':'bob','age':25,'weight':200},{'name':'jim','age':31,'weight':180}]
What should I do to convert this to a csv file that ...
3
votes
1answer
71 views
Flattening a list of dicts of lists of dicts (etc) of unknown depth in Python (nightmarish JSON structure)
I'm dealing with a JSON structure which is output to me in structures like this:
[{u'item': u'something',
u'data': {
u'other': u'',
u'else':
[
...
3
votes
2answers
196 views
scipy.io.loadmat nested structures (i.e. dictionaries)
Using the given routines (how to load Matlab .mat files with scipy), I could not access deeper nested structures to recover them into dictionaries
To present the problem I run into in more detail, I ...
3
votes
3answers
110 views
Difference in a dict
I'm trying to figure out the difference in a dict, whether something was added or removed and from what.
Here is a case where a value is added:
original = {0: None, 1: False, 2: [16]}
new = {0: ...
3
votes
2answers
234 views
Reverse lookup a nested dictionary
Dictionary<string, Dictionary<string, ... >...> nestedDictionary;
Above Dictionary has a one-to-many relationship at each level from top to bottom. Adding an item is pretty easy since we ...
3
votes
4answers
335 views
Recursive diff of two python dictionaries (keys and values)
So I have a python dictionary, call it d1, and a version of that dictionary at a later point in time, call it d2. I want to find all the changes between d1 and d2. In other words, everything that was ...
3
votes
4answers
198 views
Why is lookup in dictionary much faster than two if-tests in Python?
I need to read gigabytes of text so I'm trying to optimize my code. When doing this I found that, for my problem, using a dictionary is faster than if-tests.
check = {'R':'-', 'F':'+'}
seqs = ['R', ...
3
votes
4answers
359 views
Python dictionaries-How to keep the new value from overwriting the previous value?
I want to create a Dictionary called "First" (as in First Name) that will store numerous first names which are all stored in the dictionary via a function. The idea is that the dictionary can support ...
3
votes
5answers
3k views
how to copy a dictionary in python 3.1 and edit ONLY the copy
can someone please explain this to me??? this doesn't make any sense to me....
I copy a dictionary into another and edit the second and both are changed????
ActivePython 3.1.0.1 (ActiveState ...
3
votes
4answers
219 views
Is there a way to extract a dict in Python into the local namespace?
PHP has a function called extract() which takes an associative array as the argument and creates local variables out of the keys whose values are assigned to the key's values. Is there a way to do ...
2
votes
1answer
91 views
looking for an efficient and fast way to map items from one large file to another in python
I have several TSV files ranging in size from 2MB to 450MB. I need to map data from one the other and finally create a file based on these mappings.
the files look like this:
file 1:
cluster_123 ...
2
votes
1answer
75 views
weird behaviour with list of dictionaries in python
Here is a simple code that performs operations on lists:
>>> a = [0] * 5
>>> a
[0, 0, 0, 0, 0]
>>> a[0] = 5
>>> a
[5, 0, 0, 0, 0]
>>>
For now, nothing ...
2
votes
3answers
66 views
Thread safety when writin to two .net dictionary in same method
I've been asked to make dictionaries inside a class thread safe.
My first proposal was to implement a thread safe dictionary, the community of .net developers had already worked on that but it was ...
2
votes
1answer
148 views
Truncate the length of a Python dictionary
Given an ordered Python dictionary, what is the most Pythonic way to truncate its length? For example, if I'm given a dictionary with several thousand entries how do I truncate it to be the first 500 ...
2
votes
1answer
621 views
WPF : problem with static resource shared in merged dictionaries
I'm currently working on having dictionaries of styles and templates that I can dynamically apply to my application. Before this "new wanted" dynamical behavior, I had several resource dictionaries, ...
2
votes
3answers
2k views
python list of dicts how to merge key:value where values are same?
Python newb here looking for some assistance...
For a variable number of dicts in a python list like:
list_dicts = [
{'id':'001', 'name':'jim', 'item':'pencil', 'price':'0.99'},
{'id':'002', ...
2
votes
4answers
334 views
Why if hashCode method is implemented, equals methods must also be implemented in case of keys in Dictionary the datatype?
Datatype: Dictionary keys
Can somebody please tell me importance of implementing both(hashCode/equals) of them simultaneously. because I think if we implement hashCode method equals is going to ...
2
votes
6answers
264 views
Return a list of dictionaries that match the corresponding list of values in python
For example, this is my list of dictionaries:
[{'name': 'John', 'color': 'red' },
{'name': 'Bob', 'color': 'green'},
{'name': 'Tom', 'color': 'blue' }]
Based on the list ['blue', 'red', ...
1
vote
1answer
172 views
Querying nested dictionaries in RavenDB
This question regards querying nested dictionaries.
I have a case which can be simplified into the following setup with a style containing a list of SKUs containing a list of Collis.
CLASS ...
1
vote
5answers
100 views
Python and no obvious way to get a specific element from a dictionary
How come that I can easily do a for-loop in Python to loop through all the elements of a dictionary in the order I appended the elements but there's no obvious way to access a specific element? When I ...
1
vote
2answers
76 views
Updating Dictionaries in Python
I am trying to have my dictionary continuously update for as long as the loop is running, with the x and y values changing as needed. This is how I initially tried it before getting the error message ...
1
vote
3answers
102 views
Python dictionary to sorted tuples, can this be done better?
I have an dictonary for my input with the following characteristics:
Each value will be either an integer, string or iterable (other than a string).
If the element is an iterable, each element in ...
1
vote
2answers
424 views
Trouble with Selenium 2 Remote WebDriver and C# - Why won't my dictionary work?
First, a caveat: I'm brand new to C#, so please forgive me, if this is a ridiculously simple question. I'm converting some Selenium Python tests to C#, and I'm just getting started.
So, I have the ...
1
vote
1answer
139 views
Is there a standard database format for bilingual dictionary applications?
I'm wondering if there is an agreed-upon format for the database records used by bilingual dictionary applications.
(I am a career lexicographer with moderate but growing programming ability in ...
1
vote
3answers
776 views
.NET ObservableDictionary
I have written the following class which implements(or tries to!) a dictionary with notifications:
public partial class ObservableDictionary<TKey, TValue> : Dictionary<TKey, TValue>, ...
1
vote
3answers
146 views
if __ and __ in ___ then
I am trying to create a script that loops through a list.
I need to look through a finite list (400) of competency identifiers (e.g. 124, 129 etc - normal ints )
I then have a dictionary that ...
1
vote
2answers
407 views
Using dictionaries with XML (iphone/iOs)
I want to parse data from a xml file. This is working so far, but I don't find the correct way to get data from the dictionary.
My parser looks as follows
- (void)parser:(NSXMLParser *)parser ...
1
vote
0answers
103 views
How to add sections to an Array of Arrays of Dictionaries (iphone sdk)?
Each dictionary is a cell (plist), but I can't seem to add them correctly on each letter (A to Z). Can anyone help me with the code for those 3 methods needed for sections?, thank you.
1
vote
3answers
142 views
Can a value in a Python Dictionary have two values?
For a test program I'm making a simple model of the NFL. I'd like to assign a record (wins and losses) to a team as a value in a dictionary? Is that possible?
For example:
afcNorth = ["Baltimore ...
1
vote
6answers
163 views
re-combining a list/dictionary in python
following on from this question
i have the following lists in python which i want to recombine into a dictionary/list:
from
fromfruits = { "names" : ['banana','grapefruit','apple'] , "colors" : ...
1
vote
3answers
1k views
Flatten a dictionary of dictionaries (2 levels deep) of lists in Python
I'm trying to wrap my brain around this but it's not flexible enough.
In my Python script I have a dictionary of dictionaries of lists. (Actually it gets a little deeper but that level is not ...
1
vote
0answers
516 views
Loading plist with array-->dictionaries-->dictionaries into core data?
HI,
I have a plist that comprises an array of dictionaries that each contain multiple dictionaries of strings. That is I have a:
MusicDataArray-->Mel ---->filename1
...
1
vote
2answers
251 views
Objective-C Problem with Dictionaries & Arrays
I am attempting to follow the tutorial shown here - http://www.iphonesdkarticles.com/2009/01/uitableview-sectioned-table-view.html - and implement it in my own code.
Here's the problem I'm getting -
...
1
vote
1answer
179 views
Problem requiring lists
The current issue im facing is comes from the following scenario. I have a script that runs a commandline program to find all files of a certain extension within an specific folder, lets call these ...
1
vote
2answers
811 views
loop through list of dictionaries
i have a list of dictionaries. there are several points inside the list, some are multiple. When there is a multiple entry i want to calculate the average of the x and the y of this point. My problem ...
1
vote
6answers
128 views
In Python - a way to choose which dictionary to iterate over (and manipulate values in)
Here's my problem:
Lets say I have two dictionaries, dict_a and dict_b.
Each of them have similar keys and values that I can manipulate in the same way, and in fact that's what I'm doing in a large ...
1
vote
4answers
2k views
How to efficiently output dictionary as csv file using Python's csv module? Out of memory error
I am trying to serialize a list of dictionaries to a csv text file using Python's CSV module. My list has about 13,000 elements, each is a dictionary with ~100 keys consisting of simple text and ...
1
vote
2answers
73 views
Python dictionaries: changing the order of nesting
I have a dictionary, with 300 key value pairs, where each of the keys are integers and the values are dictionaries with three key value pairs. The inner dictionaries all have the same keys, but ...
0
votes
1answer
37 views
python 3.x xml parsing similar to plistlib?
I have GPS data stored as as .tcx file.
This is a xml file (begging of file below)
<?xml version="1.0" encoding="utf-8"?>
<TrainingCenterDatabase ...
0
votes
5answers
72 views
Number of different values assoicated with a key in a list of dicts
Given a list of dictionaries ( each of which have same keys), I want total number of different values with which a given key is associated
$ li = [{1:2,2:3},{1:2,2:4}] $ the expected output is ...
0
votes
6answers
46 views
python dictionary creation
I have a class called Polynomial, and it stores information to the polynomial in a dictionary. The keys are the exponents and the values are the coefficients. To create an instance of the Polynomial ...
0
votes
3answers
33 views
Python: Modifying a Function to Search Values in a Dictionary
I wrote a simple function that receives a dictionary and a string as a parameter. The function uses the string to search the dictionary and then returns a new dictionary with results.
Now i need ...
0
votes
2answers
89 views
Need to create a histogram in Python for a corpus
import nltk
from nltk.book import *
from nltk.corpus import brown
corpus_text = brown.words()
word_freq = FreqDist(corpus_text)
word_hist = dict()
for k,v in word_freq.iteritems():
if key in ...
0
votes
0answers
53 views
Python: Performance of Nested Dictionaries in this case [closed]
I plan to build dictionary with keys of all alphabets. When user input a sentence or paragraph, each word gets checked, and depending on starting letter, it will be added to the relevant key of the ...
0
votes
4answers
234 views
Reorder dictionary in python according to a list of values
Let us consider a dictionary:
sample_dict={1:'r099',2:'g444',3:'t555',4:'f444',5:'h666'}
I want to re-order this dictionary in an order specified by a list containing the order of the dictionary ...