-1
votes
1answer
40 views

Processing files listed from a dictionary

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
28 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 ...
1
vote
3answers
50 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
37 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 ...
5
votes
2answers
87 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
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
65 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: ...
1
vote
3answers
34 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
60 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 ...
0
votes
1answer
41 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 ...
3
votes
3answers
50 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
39 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
58 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
2answers
76 views

I'm making a quick and dirty poker game, and need to determine which hand wins

I'm making a quick and dirty poker game in python, and am having trouble determining which player wins the hand. I have functions that deal cards, determine the "value" of the hand in the way that 0-8 ...
1
vote
5answers
63 views

Python Accessing Values in A List of Dictionaries

Say I have a List of dictionaries that have Names and ages and other info, like so: thisismylist= [ {'Name': 'Albert' , 'Age': 16}, {'Name': 'Suzy', 'Age': 17}, ...
1
vote
5answers
68 views

Python: tree like implementation of dict datastructure [closed]

I have dict object something similar to like this, topo = { 'name' : 'm0', 'children' : [{ 'name' : 'm1', 'children' : [] }, { 'name' : 'm2', 'children' : [] }, { 'name' : 'm3', ...
2
votes
5answers
62 views

Accessing Python dict values with the key start characters

I was wondering: would it be possible to access dict values with uncomplete keys (as long as there are not more than one entry for a given string)? For example: my_dict = {'name': 'Klauss', 'age': ...
-5
votes
1answer
44 views

Creating a Basic Python Dictionary [closed]

I have a question on how to create dictionary and what exactly a dictionary was. I would know how to solve this problem if it said to create a list, but it says dictionary which has me confused on the ...
1
vote
2answers
44 views

Python: order dictionary

I use Python dictionary: >>> a = {} >>> a["w"] = {} >>> a["a"] = {} >>> a["s"] = {} >>> a {'a': {}, 's': {}, 'w': {}} I need: >>> a {'w': {}, ...
3
votes
3answers
49 views

How to change a tuple within a value of a dictionary?

I have a dictionary of the format : d[key] = [(val1, (Flag1, Flag2)), (val2, (Flag1, Flag2)), (val3, (Flag1, Flag2))] I want to make it : d[key] = [(val1, Flag1), ...
4
votes
2answers
69 views

How to travese two dictionaries in a single for loop?

I want to generate the following effect : for i, j in d.items() and k, v in c.items(): print i, j, k, v This is wrong. I want to know how can I achieve this?
0
votes
1answer
43 views

The possible value of the key-value pair is unhashable?

I know that you cannot use a list as a key in a Python dictionary because it is mutable and therefore not hashable (or something like this). But I seem to be getting this error on the value, not the ...
1
vote
2answers
43 views

Find differences between a list of dictionaries

I need to get a difference between multiple dictionaries inside a list. What I have: [{'WWW': '1.1.1.1', 'Dom': '1.1.1.1', 'SPF': None, 'MX': '1.1.1.1', 'PTR': 'reverse.dom.com'}, {'WWW': ...
0
votes
4answers
49 views

Why the dict out of List are separate

Name = [] Address = [] for a in range(1): Name = raw_input ('Enter Name: ') Address = raw_input ('Enter Address: ') print Name print Address print [dict(zip(Name, e)) for e in ...
1
vote
1answer
63 views

Creating dictionaries in a faster way - Python

I have the following file containing over 500.000 lines. The lines look like the following: 0-0 0-1 1-2 1-3 2-4 3-5 0-1 0-2 1-3 2-4 3-5 4-6 5-7 6-7 0-9 1-8 2-14 3-7 5-6 4-7 5-8 6-10 7-11 For each ...
0
votes
3answers
37 views

python pick and delete by item using dict comprehension

If I have a dictionary such as the one below, what is the best way to Pick all those items which have a partial key 1d Then delete those items based on that key c = ...
0
votes
0answers
23 views

Learning List Comprehensions and Dictionary Comprehensions for Python [closed]

I am looking for a good material which can be used for clearly understanding the concept behind List Comprehensions and Dictionary Comprehensions, and their usage with lists, dictionaries and tuples. ...
2
votes
3answers
37 views

Extracting key/value pair from dictionary

OK this is a Python question: We a have a dictionary: my_dict = { ('Alice', 'Cell3', 3): 9, ('Bob', 'Cell2', 6): 8, ('Peter', 'Cell1', 6): 0, ('Alice', ...
1
vote
6answers
63 views

Looping a list returning a value in dict

I am trying to read from a list and return a corresponding value in a dict. Please help me where I am going wrong. Thank you DICT = {"b": "21", "g": "54", "f": "121", "t": "1", "j": "33"} n = ['b', ...
-1
votes
1answer
108 views

How would I alter my code to print out how many answers they got right or wrong?

I need this program to print out the number of guesses you got right and wrong. I have a dictionary (called ccdict) of cities and countries, e.g. "United Kingdom":"London". This is the code: def ...
0
votes
3answers
69 views

python merging dictionary of lists of lists/tuples

Consider 2 dictionaries, d1 = {'current': [[1369713600, 29], [1369756800, 47], [1369800000, 34]], 'curr_total': 110, 'past': [[1368417600, 2], [1368460800, 70], [1368504000, ...
2
votes
1answer
56 views

Python variable List population

I'm trying to read some data from an excel file in python I want to place the data into a 2D list [[A,1,2...],[B,2,3...],[C,5,6...]] where A, B, C are the col headers and the numbers are the rows ...
4
votes
8answers
71 views

How do I determine if an argument is an object or a built in? [duplicate]

How do I determine if a "variable" is builtin like string, list, dict or number and not an "object". I am trying to do a deepcopy-ish function for dicts which copies builtin types but ignores objects. ...
0
votes
2answers
27 views

key dictionary of .mat file python

How can i access and plot all variables from .mat file, without specifying keys of variables in code? How can i "parsing" .mat file? import scipy.io mat = scipy.io.loadmat('D:\\PROJECT\\mat ...
2
votes
2answers
90 views

python dictionary key error?

I am receiving this error: Traceback (most recent call last): File "/Users/Rose/Documents/workspace/METProjectFOREAL/src/test_met4.py", line 79, in <module> ...
1
vote
0answers
55 views

Skipping over row when I'm trying to fill a csv

I'm trying to build an edgelist for a SNA project using question, answer, and comments from an online course discussion forum. Here's my code where I build the edgelist: # import libraries import ...
1
vote
2answers
56 views

What is a mult-dimensional dictionary? [closed]

I've found functions that define multi-dimensional dictionaries, but I'm unclear what they look like.
4
votes
1answer
69 views

How to loop over a dictionary with more than 3 sublevels of dictionaries inside it

I am trying to loop over a dictionary where some keys have other dictionaries as values and some of those values are a key for a dictionary it has as a value. I am parsing a YAML file with over 5000 ...
0
votes
3answers
80 views

Python dictionary - value

I have an if block statement that is checking if a string that I have assigned to variable movieTitle contains the value of a key-value pair in a predefined dictionary. The code I have is: import ...
2
votes
3answers
74 views

Python list to dict

I have a huge list like ['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 get an output of number of each ...
1
vote
3answers
79 views

How to dict folders? [duplicate]

I have to make a function to transform example 1 into example 2. I have already made a function for example 1. How do I make a function for example 2, with nested readout and with their sizes in ...
0
votes
3answers
43 views

Python dump dict to json file

I got a dict like this: sample = {'ObjectInterpolator': 1629, 'PointInterpolator': 1675, 'RectangleInterpolator': 2042} I just can't figure out how to dump it to a json file as showed below from ...
1
vote
1answer
38 views

Matching a string with a dictionary value exactly and retrieving the key - python

I have a dictionary which i fetch from MySql DB, the ID is the key and the value is a string (relative Windows path of files to be exact). I have another list which has windows path as elements. Now, ...
1
vote
3answers
79 views

Sum values in a Python dict?

How to sum the values in a python dict when I add the same key? d = {'key1':10,'key2':14,'key3':47} d['key1'] = 20 After the above the value of d['key1'] should be 30. Is this possible?
0
votes
6answers
65 views

python multipling two dictionaries

I have got two dictionaries: prices = {"banana": 4,"apple": 2} stock = {"banana": 6,"apple": 0,} How I can get sum of combining values from 1 and 2 dictionary (4*6+2*0 - in this example)?
0
votes
4answers
54 views

Sort dictionary values and discard those which do not have a value

I have following function that takes a dictionary, sort it and return the list of dictionary values. def sort_dict_values(dic): keys = dic.keys() keys.sort() return map(dic.get, keys) dict1 = ...
1
vote
2answers
38 views

Adding elements from a list of lists into dictionary in Python

I have a list where it consists of a list inside a list. The inner list contains two items with inner_list[0] is an identifier/key and inner_list[1] is the corresponding value. I would like to put ...

1 2 3 4 5 69