3
votes
3answers
53 views
Is there a dictionary like collection that can use a property of its value as the key?
istead of using Dictionary I want some type of collection class that can use a property of the value as the key, is there something like this?
1
vote
2answers
88 views
List in a dictionary, looping in Python.
I have the following code:
TYPES = {'hotmail':{'type':'hotmail', 'lookup':'mixed', 'dkim': 'no', 'signatures':['|S|Return-Path: postmaster@hotmail.com','|R|^Return-Path:\s*[^@ …
3
votes
5answers
81 views
When would you use a List<KeyValuePair<T1, T2>> instead of a Dictionary<T1, T2>?
What is the difference between a List of KeyValuePair and a Dictionary for the same types? Is there an appropriate time to use one or the other?
0
votes
4answers
63 views
Canadian to US English
Does there exist something like Canadian to US english e-dictionary which I can use in my application ?
1
vote
8answers
152 views
removing the oldest element from a dictionary in python
I would like to know the best way to remove the oldest element in a dictionary in order to control the maximum dictionary size.
example:
MAXSIZE = 4
dict = {}
def add(key,value): …
0
votes
1answer
58 views
Python func_dict used to memoize; other useful tricks?
A Python function object has an attribute dictionary called func_dict which is visible from outside the function and is mutable, but which is not modified when the function is call …
1
vote
3answers
112 views
A dictionary with values that are dictionaries: trying to sum across those keys in python
Data structure is a dictionary, each value is another dictionary, like:
>>> from lib import schedule
>>> schedule = schedule.Schedule()
>>> game = sched …
5
votes
3answers
116 views
Python: create a dictionary with list comprehension
I like the python list comprehension operator (or idiom, or whatever it is).
Can it be used to create dictionaries too? For example, by iterating over pairs of keys and values:
d …
4
votes
8answers
276 views
A Regex that will never be matched by anything
This might sound like a stupid question, but I had a long talk with some of my fellow developers and it sounded like a fun thing to think of.
So; what's your thought - what does a …
2
votes
3answers
125 views
Using keys with spaces
Is there a way to do something like the following in Django templates?
{% for hop in hops%}
<tr>
<td>{{ hop.name }}</td>
<td>{{ hop.ma …
0
votes
4answers
50 views
handling data structures (hashes etc) gracefully in ruby
I recently did a class assignment where I made a really hacky data structure. I ended up using nested hashes, which seems like a good idea, but is really hard to iterate through an …
0
votes
5answers
73 views
Which name for a “smart” dictionary (hashtable) ?
Hi,
I'm looking for a good name for a custom dictionary which automatically initializes the value for a requested key if it doesn't exist, using a delegate. The indexer implementa …
1
vote
8answers
100 views
How to remove unique, then duplicate dictionaries in a list?
Given the following list that contains some duplicate and some unique dictionaries, what is the best method to remove unique dictionaries first, then reduce the duplicate dictionar …
2
votes
5answers
104 views
How do I put a dictionary in the datastore?
Is there a good way to store a Python dictionary in the datastore? I want to do something like the following:
from google.appengine.ext import db
class Recipe(db.Model):
name …
0
votes
4answers
81 views
How to find a ‘first’ value in a Dictionary???
Okay, this could be rather in depth but I'll try to ask a clear question: how can I find the first value in a Dictionary<int, MyTableClass> where MyTableClass inherits Field& …
