A dictionary in programming is a mapping from keys to values allowing efficient value lookup given the key.

learn more… | top users | synonyms (2)

1
vote
3answers
26 views

Conditionally add multiple items to dictionary in Python

I'm constructing a dictionary in Python from many elements, some of which are nan's and I don't want to add them to the dictionary at all (because then I'll be inserting it into database and I don't ...
0
votes
0answers
4 views

How to update rows separately with QTableWidget

I have a table that gets new entries added to it in real time. Each entry has an ID and I am storing the ID in a dictionary. What I am trying to do is to have each ID in its own row and update within ...
2
votes
4answers
43 views

Match keys from two dictionaries, and make new dictionary with matched key and two associated values

So I have two dictionaries: dic1 = {1.0: 9.0, 3.0: 33.0, 5.0: 13.0} dic2 = {1.0: 3.4, 3.0: 88.9, 4.0: 73.0, 5.0: 9.0} The keys in each are the ID number, the values in dic1 are rating and the ...
0
votes
0answers
66 views

Reading values of one dictionary into another in python

So basically, i have a dictionary d, that reads from a text file "topics.txt" "topics.txt", has lines in the following pattern: 1~britain~italy~india 2~spain~turkey 3~france ...
0
votes
1answer
7 views

cygwin aspell installing new language

have a problem with adding new language to cygwin. As source for language i tried using ubuntu dictionary files. It would be interesting if anyone could install any non default languages in cygwin ...
0
votes
1answer
18 views

how to get a value out of ValuesQuerySet

I'm trying to extract some data from my database in my Django app with the following line of code. Job is the name of my model and jobIDs[i] represents the id of the record being operated on. ...
0
votes
2answers
34 views

Dictionary and For loop issues in VB

how do I go about getting each value in a dictionary array if this is my dictionary . rebDictionary= New Dictionary(Of String, String()) rebDictionary.Add("wrd", {"yap", "tap"}) i ...
0
votes
1answer
75 views

how to iterate over all keys in dictionary python?

I am supposed to count the frequency of all the key values of dictionary "d" across all the files in the document "individual-articles' Here,the document "individual-articles' has around 20000 txt ...
0
votes
3answers
34 views

How to select some of the values from python dictionary and puth them into csv

Firslty, I tried to search google for answer, but it turns to be hard to find a good answer since I'm python newbie. I want to put some values from one dictionary into csv format. It sounds easy for ...
1
vote
3answers
64 views

How to clean dictionary by deleting old elements from it

Given is Dictionary<T, U> in asp.net application. Application is running for a long time and new elements will be continuously added to the dictionary. My goal is to keep so many elements in ...
1
vote
3answers
38 views

Need word lists of french and spanish languages [closed]

I am working on sentiment calculation code and For that I need french and spanish languages adjectives list. Where can I get word list of French and Spanish languages?
0
votes
2answers
52 views

Access Return Object in Javascript

For a project I'm working on, I'm building some data objects with the following lay-out (it's a binary file that I'm reading with ArrayBuffers: AFile.prototype = { p: new BufferPack(), ...
0
votes
3answers
39 views

Python, can't find function

At the moment I am taking an online course for python, only about 1/3 the way through and I decided to try and make something with what I've learnt so far. Running into an error now though. I am ...
1
vote
1answer
19 views

Comparing output of “find” command with dictionary words

I am trying to compare the output from a "find" file search with dictionary words in order to find specific hidden files. If the hidden file name is a dictionary word, I'd like to be prompted to ...
1
vote
1answer
37 views

manipulating two values of a key in dictionary at the same time

i am reading a file which is in the format below: 0.012281001 00:1c:c4:c2:1f:fe 1 30 0.012285001 00:1c:c4:c2:1f:fe 3 40 0.012288001 00:1c:c4:c2:1f:fe 2 50 ...
0
votes
0answers
4 views

Formview e.Values dictionary object to XML

I'm looking for a simple code that can easily convert the e.Values dictionary object of Formview Inserted event into an XML? Anyone can help me with this?
0
votes
1answer
27 views

Dictionary and WAV file playback issue in VB

each button has a wav file which plays when a button is pressed Private Sub soundButton_Click(sender As Object, e As EventArgs) Handles soundButton.Click Dim btn As Button For Each btn In ...
1
vote
2answers
44 views

convert xml to python dict

I'm trying to make a dict class to process an xml but get stuck, I really run out of ideas. If someone could guide on this subject would be great. code developed so far: class XMLResponse(dict): ...
-1
votes
1answer
44 views

Example of a singleton class with a dictionary of BitmapImages [closed]

I know this is a simple question, but I can't find an example anywhere. Please think of this as helping out a newbie. I need to create a singleton class so I can access a dictionary of BitmapImages ...
-2
votes
3answers
113 views

How can I sort that table in Python on Linux

import sys, subprocess, glob mdbfiles = glob.glob('*.res') for DATABASE in mdbfiles: subprocess.call(["mdb-schema", DATABASE, "mysql"]) table_names = subprocess.Popen(["mdb-tables", "-1", ...
1
vote
3answers
45 views

Unique list (set) to dictionary

I'm trying a long time to remove duplicate from a list and create a dictionary with keys like php (0,1,2....). I have tried : ids = dict(set([1,2,2,2,3,4,5,4,5,6])) print ids Then I want to for ...
1
vote
3answers
74 views

Find the relative quantity from the dictionary [duplicate]

I have written a logic to find available quantity in location, for the location and quantity is managed with dictionary: d={'loc2': 500.0, 'loc3': 200.0, 'loc1': 1000.0, 'loc4': 100.0, 'loc5': 50.0} ...
1
vote
1answer
53 views

iterate custom dictionary object

Recently learned a bit of object oriented in Python, and I'm trying to do the same things in VBA. I manage to construct a parent object (PC) that contains a dictionary of children objects:hooks. ...
0
votes
1answer
55 views

Need help modifying a regex that once worked

I am trying to parse a string and build a dictionary that will contain the name of the field and its value as key / value. Here's the code: var dictPriceList = Regex.Matches(priceListToParse, ...
0
votes
1answer
30 views

How to use this dictionary to show the file information in template in javascript?

I have a dictionary like this that I have passed to template in Django: files = { "20090209.02s1.1_sequence.txt": [645045714, 2584.9807732105255, 137625600], "20090209.02s1.2_sequence.txt": ...
2
votes
3answers
46 views

How to convert the following lists into dictionary?

I have a list like this: [['ok.txt', 'hello'], [10, 20], ['first_one', 'second_one'], ['done', 'pending']] I want to convert this list into dictionary like this: {'ok.txt' : ['10', 'first_one', ...
2
votes
4answers
74 views

Find available quantity from dictionary [closed]

I have written a logic to find available quantity in location, for the location and quantity is managed with dictionary, d={'loc2': 500.0, 'loc3': 200.0, 'loc1': 1000.0, 'loc4': 100.0, 'loc5': 50.0} ...
-4
votes
1answer
55 views

Processing files listed from a dictionary [closed]

I have a text document topics.txt: 1~cocoa 2~ 3~ 4~ 5~grain~wheat~corn~barley~oat~sorghum 6~veg-oil~linseed~lin-oil~soy-oil~sun-oil~soybean~oilseed~corn~sunseed~grain~sorghum~wheat 7~ 8~ 9~earn ...
0
votes
2answers
33 views

Read list of lists and output as dictionary, the count of values per key

I have a list of lists like this list1=[['a', '2'] ['a', '1'] ['b', '3'] ['c', '2'] ['b', '1'] ['a', '1']['b', '1'] ['c', '2']['b', '3'] ['b', '1']] I want to walk through this and find out number ...
0
votes
1answer
18 views

WCF Restful Service static variable

I currently have 2 static dictionaries in a wcf restful service. These both hold look up data that's not worth putting in a database. Will these stay in memory until the application restarts or should ...
1
vote
3answers
52 views

Multiple levels of keys and values in Python

I wanted to know if the functionality i am trying to implement in python is possible. I have a global hash called Creatures. Creatures contain sub-hashes called mammals, amphibians, birds, insects. ...
1
vote
3answers
41 views

How to take a dictionary and send a JSON Response

I have the following function, def facebooktest(request): fb_value = ast.literal_eval(request.body) fb_foodies = Foodie.objects.filter(facebook_id__in = fb_value.values()) for fb_foodie ...
-3
votes
0answers
55 views

Using LINQ for xml and dictionarys [duplicate]

So I have some XML -<UserClassDictionary> -<User id="asnyder"> -<ControlNumbers> <ControlNumber>1297267</ControlNumber> </ControlNumbers> ...
5
votes
2answers
93 views

How to find a value in a list of python dictionaries?

Have a list of python dictionaries in the following format. How would you do a search to find a specific name exists? label = [{'date': datetime.datetime(2013, 6, 17, 8, 56, 24, 2347), ...
0
votes
1answer
24 views

Best component to show three columns

I am struggling myself thinking about which component to use in my new app. The first screen I am using Collection View with big images. Once the user touches one cell, it goes to the second screen ...
0
votes
1answer
59 views

how to keep ordered rows in dictionary?

I wrote the following script to retrieve the gene count for each contains. It works well but the order of the ID list that I use as an input is not conserved in the output. I would need to conserve ...
4
votes
1answer
66 views

How to convert this list into dictionary in Python?

I have a list like this: paths = [['test_data', 'new_directory', 'ok.txt'], ['test_data', 'reads_1.fq'], ['test_data', 'test_ref.fa']] I want to convert this into dictionary like this: ...
0
votes
1answer
28 views

Appending to hash table in bash scipt

I am trying to make a hash table with the file name of all files in a directory and another integer number. Like "File Name" : "number". The code should be in bash 4.x This is the code which i wrote: ...
1
vote
3answers
35 views

Splitting a sentence into two and storing them into a defaultdict as key and value in Python

I have some questions about Defaultdict and Counter. I have a situation where I have a text file with one sentence per line. I want to split up the sentence into two (at first space) and store them ...
2
votes
4answers
62 views

Why do copied dictionaries point to the same directory but lists don't?

Can someone tell me why when you copy dictionaries they both point to the same directory, so that a change to one effects the other, but this is not the case for lists? I am interested in the logic ...
3
votes
1answer
63 views

.net dictionary object type

I'm trying to use a dll on my system. One of the methods return a dictionary object defined in the object browser as "System.Collections.Generic.Dictionary<<string,1.5>>" What is 1.5? ...
0
votes
1answer
42 views

How to get the value of a dictionary declared inside a class as a local variable with Python

I am wondering how can I get the value of a dictionary declared as local variable inside a class? look at my source below. Note: If I declare this variable inside the function get_current_weather it ...
0
votes
1answer
20 views

free api for an english to english dictionary app [closed]

where can i get a dictionary api(json/xml) for free?? I want the user to enter a word and then the app will download the word and meanings through the api. Is there any free dictionary api which is ...
3
votes
3answers
56 views

Obtaining length of list as a value in dictionary in Python 2.7

I have two lists and dictionary as follows: >>> var1=[1,2,3,4] >>> var2=[5,6,7] >>> dict={1:var1,2:var2} I want to find the size of the mutable element from my dictionary ...
2
votes
1answer
39 views

use a dictionary to change element text in xml

I am attempting to learn python while also saving myself a lot of work. I have an xml file and a dictionary file mapping old to new device id's. I am trying to either iterate through the tree and ...
4
votes
1answer
40 views

Python 2.7 intentional use of .items over .iteritems

Looking at the source of collections.py I see that .items is used instead of .iteritems in some instances, which I assume as intentional being part of Python's source code. eg. in update (removed ...
4
votes
4answers
61 views

Get max keys of a list of dictionaries

If I have: dicts = [{'a': 4,'b': 7,'c': 9}, {'a': 2,'b': 1,'c': 10}, {'a': 11,'b': 3,'c': 2}] How can I get the maximum keys only, like this: {'a': 11,'c': 10,'b': 7}
0
votes
2answers
21 views

Handling indefinite paired arguments with argparse

In my project, I need to define a syntax like mcraw recipe add COUNT ID COUNT_1 ID_1 [COUNT_2 ID_2 ..] and argparse seems to be the best tool for the general job. How can I instruct Python and its ...
0
votes
2answers
21 views

Python create Counter object from dictionary, include a sum of values against summarised keys

I have a dictionary with {ID: (INITIALS, DATE, AREA)} like so: >> mydict = {1: ('JN', '2012-06-13', 2), 2: ('JN', '2012-06-13', 5), 3: ('JN', '2012-06-14', 8), ...
0
votes
1answer
25 views

Get textbox with values and Checked Checkboxes from formcollection MVC 4

I am new to MVC and feeling blindfolded. May be silly. I have form with 20 textboxes , checkboxes and few dropdowns. I want to get checked checkboxes, textbox with values and dropdowns that has ...

1 2 3 4 5 139