A dictionary in programming is a mapping from keys to values allowing efficient value lookup given the key.
-2
votes
0answers
37 views
How to create a dictionary from a .txt file in python?
So basically, for school we're making a project over the course of three weeks. I've chosen to create an engine for a Python-based text adventure. I've started writing this code today, and here's what ...
1
vote
1answer
32 views
How to make objects with same data have same key?
Is there an easy way to make a hash key for a class based on it's data???
Or some interface for that?
I have a Dictionary<MyClass, int>.
MyClass is very simple, it contains a name and a string ...
0
votes
0answers
19 views
Immutable Dictionary Vs Dictionary Vs C5 Vs F# - performance
Our application uses plenty of dictionaries which have multi level lookup that are not frequently changing. We are investigating at converting some of the critical code that does a lot of lookup using ...
0
votes
2answers
21 views
Python: ambiguities when (un-)pickling a dict-based tree
I have a simple tree structure where each node can have several children which are accessed through keys (+ some payload stored in value):
class NodeDict(dict):
def __init__(self, parent):
...
0
votes
5answers
36 views
How to create a Dictionary
i would like to make some sort of a structure where i can have duplicate keys but the values differ.
im using java and the hashmap is nice but doesnt allow for duplicate keys, i imported the google ...
16
votes
4answers
403 views
One liner: creating a dictionary from list with indices as keys
I want to create a dictionary out of a given list, in just one line. The keys of the dictionary will be indices, and values will be the elements of the list. Something like this:
a = [51,27,13,56] ...
0
votes
0answers
20 views
Convert from Object to Dictionary
can anyone tell me the correct way to convert from Object to Dictionary
I used this way.
public void ReceiveFriedns(Object obj)
{
Dictionary<string,object> ht = new ...
2
votes
2answers
41 views
Grouping list elements to dictionary
I have a list that contains 8 elements:
ConfigFile.ControllerList
this list is type of:
List<Controller>
How can i add Controllers from ControllerList to 3 dictionary keys. Dictionary is ...
0
votes
3answers
68 views
Python dict: get values sorted by a list of keys
I don't wan to use numpy to work with a 2D matrix
I figured out how to create something that looks like a row and column dictionary. It works fine if I want to look up single values.
But I'm having ...
0
votes
2answers
28 views
Python how to generate dicts from names and reverse
I want to simplify my code, especially to avoid square brackets; so my question is :
def someFunction():
someString = "Hi!"
someNumber = 22
somePointer = ""
someList = []
...
0
votes
1answer
55 views
Python 3 dict behavior in Python 2
Pardon me if this is a duplicate, but I wasn't able to find it.
I saw this question tonight. I had never heard of future_builtins before this, and it got me wondering. future_builtins only covers a ...
0
votes
2answers
68 views
Implementing C# Dictionary results in error: Does not have matching return type
I am trying to understand how C# implements the Dictionary. It seems to me that Dictionary is supposed to inherit from IEnumerable which requires the method implementation for:
IEnumerable ...
1
vote
0answers
45 views
Smaller program will print out key from values in dictionary, but stops when incorporated into larger function?
So I have a problem.
I am wanting to do something similar to this, where I call out a value, and it prints out the keys associated with that value. And I can even get it working:
def test(pet):
...
1
vote
3answers
31 views
Dynamic binding using dictionaries in python?
I know how to do Fibonacci series recursively, that's pretty simple:
def F(n):
if n == 1 or n == 2:
return 1
else:
return k * F(n-2) + F(n - 1)
I do know however that this is extremely ...
0
votes
2answers
27 views
return output of dictionary to alphabetical order
The following code prints out the word in the txt file and then how many instances there are of that word (e.g. a, 26) the problem is that it doesn't print it out in alphabetical order. Any help would ...
0
votes
2answers
39 views
Printing out the key associated with multiple values in a dictionary [duplicate]
I am trying to print out the key associated with a value item in a dictionary if that value item is put forward when I call a function.
For example (and this works):
def test(pet):
dic = {'Dog': ...
0
votes
0answers
16 views
PyYAML load into xml.etree.ElementTree
I'm a newbie of pyYAML, and even of Python.
I want to load a YAML config into a xml.etree.ElementTree object.
But I totally have no idea how to implement the constructor.
actually, the one thing I ...
3
votes
5answers
75 views
List of dictionaries from pairs in list
Looking for a way to transform a list of coordinates into pairs of dictionaries, i.e if:
l = [1 2 3 4 5 6 7 8]
I want to create a list of dictionaries:
output = [{'x': 1, 'y': 2}, {'x': 3, 'y': ...
1
vote
0answers
45 views
Compare values of specific keys in 2 different dictionaries to see if they are equal
I am trying to see if the values of specific keys in 2 different dictionaries are equal (which they are at certain times). If so, I want to print both dictionary values. If not, I only want to print ...
0
votes
0answers
27 views
Linq join with dictionary and value type key in xamarin ios
I have a Dictonary and a IEnumerable that I would like to join on Key and OtherThing.Id
This works fine with a simple linq join on Xamarin Monodroid. Then we wanted to use our code in the IO's App. ...
0
votes
2answers
43 views
return key by value in dictionary [duplicate]
I am trying to return the key in a dictionary given a value
in this case if 'b' is in the dictionary, I want it to return the key at which 'b' is (i.e 2)
def find_key(input_dict, value):
if ...
1
vote
2answers
38 views
Printing contents of dictionary in random order
I am fairly new to Python. Infact, today is my first day in Python. I was following a tutorial and read about dictionary.
But I don't know what is the order in which contents of a dictionary are ...
1
vote
3answers
37 views
Python - tokenizing, replacing words
I'm trying to create something like sentences with random words put into them. To be specific, I'd have something like:
"The weather today is [weather_state]."
and to be able to do something like ...
0
votes
2answers
53 views
Creating a dictionary from CSV data
I have a function that takes a CSV file and splits it into 3 values; isbn, author and title then creates a dictionary that maps isbn values to tuples containing the author and title. This is my ...
0
votes
3answers
60 views
How to iterate through list of generic dictionary in C#
I have a json object which is been converted to list of Dictionary. The json is as follows:
{
"DataList":
{"Non Fuel":
{
"sn":"/DataXmlProduct/Customers/DataXml/Customer/DueDate",
...
0
votes
1answer
21 views
counting the number of each word in a dictionary
I am trying to fix this code:
def word_counter (input_str):
input_str1 = input_str.lower()
word = 0
input_str2 = dict(enumerate(input_str1.split(), start=1))
if word in input_str2:
...
2
votes
2answers
26 views
Converting a string into a dictionary
I want to convert a string such as:
"this is a sentence"
and turn it into a dictionary such as:
{1:"this", 2:"is", 3:"a", 4:"sentence"}
any help would be appreciated
-1
votes
3answers
66 views
How to get the top 10 students in the class using Python dict
I have a dictionary with student-name and marks
dict1 = {'name1': 34, 'name2':45, 'name3': 98, 'name4':34, 'name5': 66}
I want to get the top 10 student names along with their marks from the above ...
-2
votes
3answers
57 views
Lists into Dictionary python
file.txt
Harry Moon, Meteor \n roger gim, astronaut \n john banks, westpac \n john banks, ASB
Code:
FILE=file.txt
filename=open(FILE,"rt")
fileread=filename.readlines()
fileread.sort()
for i in ...
2
votes
3answers
48 views
In Python, is it possible for an external function when passed a dict key, to find the other keys in that dictionary?
Let's say I have the following code:
def function(k):
# do something here
d = { 0: 'a', 1: 'b', 2: 'c' }
function(d[0])
Is it possible for the function to find out what are the other keys in ...
1
vote
2answers
42 views
Get the Key correspond to max(value) in python dict [duplicate]
Let's consider a sample dictionary of (key, value) pairs as follows:
dict1 = {'a' : 10, 'x' : 44, 'f': 34, 'h':89, 'j': 90, 'd': 28, 'g' : 90}
dict2 = {'a' : 10, 'x' : 44, 'f': 34, 'h':89, 'j': 90, ...
-3
votes
1answer
28 views
Dictionary in python for different desktop and its cards
Let us say there are various desktop data [hard coded into dictionary] which support specific controllers on it on different ports
ABC: Card1 in port1, card2 in port 2, card3 in port 3, card4 in port ...
3
votes
2answers
48 views
store multiple integer values in one list and return best value pair
I have the following three integer values:
id # identifies the pair
entropy # gives entropy information
len # basicly the length of a string
now i want to store many of these values ...
0
votes
5answers
60 views
Collections list and dictionary
I have a list that contains roleids and a dictionary that has database of roleids and menus accessible to that roleid.
Suppose a user has role 1,2,3 then how do I retrieve the distinct menus he can ...
4
votes
1answer
39 views
complicated list and dictionary lookup in python
I have a list of tuples and a dictionary of lists as follows.
# List of tuples
lot = [('Item 1', 43), ('Item 4', 82), ('Item 12', 33), ('Item 10', 21)]
# dict of lists
dol = {
...
1
vote
1answer
54 views
How to order the dictionary from list in python
I have this things
mydict = OrderedDict({'a':'1', 'd':'2','f':'1', 'i':'2','m':'1', 'k':'2'})
Now suppose i have the list like
l = [i,k]
So i want to order the mydict based on the list l. so that ...
3
votes
2answers
66 views
How to convert string to dictionary, and count the number of each word
I am just wondering how i would convert a string, such as "hello there hi there", and turn it into a dictionary, then using this dictionary, i want to count the number of each word in the dictionary, ...
-3
votes
3answers
72 views
Turn dict into list wipes out the values [closed]
Short question: Why when we do list(dict()) the return is the keys of the dict, but not the values?
Cause all that I know about (key, value) pairs, is that what matters is the value, not the key. The ...
-1
votes
0answers
44 views
Can't Modify Dictionary Variable
I've been using this code to try and modify some data that would be written to a file, but no matter what I do, even directly assigning it null bytes, it won't change. I am trying to access the ...
1
vote
1answer
84 views
How to split string of biographical info into different dictionaries using regex, in Python?
Recently I got my hands on a research project that would greatly benefit from learning how to parse a string of biographical data on several individuals into a set of dictionaries for each individual.
...
-3
votes
1answer
64 views
Text document to dictionary Python
Okay, I have a text file that "relationships.txt" that has the following inside:
Elizabeth: Peter, Angela, Thomas
Mary: Tom
Angela: Fred, Alison
Alison: Beatrice, Dick, Harry
mother Elizabeth
mother ...
1
vote
1answer
97 views
The given key was not present in the dictionary. Even when dictionary.ContainsKey(“given_key”) == true
I have a class that gathers 7-day forecast data from the Bureau or Meteorology and presents it on a web page. A script runs every 30 minutes to get updated data from the Bureau.
The bureau provides ...
0
votes
1answer
50 views
Python Binary Search for Dictionary
I have a huge .txt.gz file with ~800kb of words and score values formatted as "value word" for each line and sorted by word. What would be the fastest way to lookup the value of a given word?
I can ...
1
vote
3answers
41 views
Copy key values from NameValueCollection to Generic Dictionary
Trying to copy values from an existing NameValueCollection object to a Dictionary. I have the following code below to do that but seems the Add does not accept that my keys and values are as Strings
...
0
votes
2answers
66 views
Replacing single value in dict in python list comprehension with other items
Currently I am populating a generator from networkx's MultiDiGraph module, in this way:
new_u0_edges = ((u, new_u1, key, edata) for u, v, key, edata in
self.g.edges_iter(u0, ...
0
votes
1answer
54 views
convert a list of delimited strings to a tree/nested dict, using python
I am trying to convert a list of dot-separated strings, e.g.
['one.two.three.four', 'one.six.seven.eight', 'five.nine.ten', 'twelve.zero']
into a tree (nested lists or dicts - anything that is easy ...
1
vote
1answer
63 views
Saving dictionary keys as strings
I have following dictionary:
OrderedDict([(u'b1', OrderedDict([(u'ip', u'199.0.0.1'), (u'port', u'1122')])),
(u'b2', OrderedDict([(u'ip', u'199.0.0.1'), (u'port', u'1123')]))])
I want ...
2
votes
2answers
23 views
Is there an alternative to pickle - save a dictionary (python)
I need to save a dictionary to a file, In the dictionary there are strings, integers, and dictionarys.
I did it by my own and it's not pretty and nice to user.
I know about pickle but as I know it ...
-2
votes
2answers
50 views
Is it possible to get a reference to MyList<Object> if the listname is a string “myList”
I have some lists of the type ObservableCollection<SampleObject>
They all end with a letter of the alphabet: lista, listb, listc...
Now i want to make a loop which runs through the alphabet and ...
0
votes
3answers
67 views
Using multiple keys for one value in a Python dictionary
I have a Python dictionary that uses integers as keys
d[7] = ...
to reference custom objects:
c = Car()
d[7] = c
However, each of these custom objects also has a string identifier (from a third ...


