1
vote
1answer
45 views
Python optparse Values Instance
How can I take the opt result of
opt, args = parser.parse_args()
and place it in a dict? Python calls opt a "Values Instance" and I can't find any way to turn a Values Instance …
7
votes
6answers
2k views
python: how to check if a given index in a dict exists yet
Hi,
given a dict, how can I find out if a given index in that dict has already been set to a non-None value?
I.e., I want to do this:
my_dict = {}
if (my_dict[some_value] != No …
4
votes
5answers
127 views
Dict has key from list
How can I determine if any of the list elements are a key to a dict?
The straight forward way is,
for i in myList:
if i in myDict:
return True
return False
but is there …
3
votes
5answers
1k views
Python reverse / inverse a mapping
Given a dictionary likeso:
map = { 'a': 1, 'b':2 }
How can one invert this map to get:
inv_map = { 1: 'a', 2: 'b' }
3
votes
3answers
216 views
Python base clase method call: unexpected behavior
Why does str(A()) seemingly call A.__repr__() and not dict.__str__() in the example below?
class A(dict):
def __repr__(self):
return 'repr(A)'
def __str__(self):
…
0
votes
5answers
134 views
appending successfully to a python list
This may seem like the worlds simplest python question... But I'm going to give it a go of explaining it.
Basically I have to loop through pages of json results from a query.
the …
1
vote
1answer
64 views
Subclassing python’s dict, override of __setitem__ doesn’t retain new value
Hi, I'm subclassing dict, but ran into a problem with setitem where one assignment works, but another assignment does not. I've boiled it down to the following basic problem:
clas …
5
votes
4answers
2k views
Python - Create a list/dict with Initial Capacity
Code like this often happens:
l = []
while foo:
#baz
l.append(bar)
#qux
This is really slow if you're about to append thousands of elements to your list, as the list …
0
votes
5answers
116 views
parsing string to a dict
I have a string output which is in form of a dict ex.
{'key1':'value1','key2':'value2'}
how can make easily save it as a dict and not as a string?
7
votes
10answers
335 views
python: How do I check that multiple keys are in a dict in one go?
I want to do something like:
foo = {'foo':1,'zip':2,'zam':3,'bar':4}
if ("foo","bar") in foo:
#do stuff
I'm not sure if its possible but would like to know. :-)
4
votes
2answers
204 views
How can 2 Python dictionaries become 1? [closed]
Possible Duplicate:
Python “extend” for a dictionary
I know that Python list can be appended or extended. Is there an easy way to combine two Python dictionar …
0
votes
2answers
88 views
KeyError with dict.fromkeys() and dict-like object
Hi,
In Python, you can use a dictionary as the first argument to dict.fromkeys(), e.g.:
In [1]: d = {'a': 1, 'b': 2}
In [2]: dict.fromkeys(d)
Out[2]: {'a': None, 'b': None}
I …
7
votes
11answers
491 views
Convert Python dict to object
Hi,
I'm searching for an elegant way to convert a normal Python dict with some nested dicts to an object.
For example:
>>> d = {'a': 1, 'b': {'c': 2}, 'd': ["hi", {'foo …
2
votes
5answers
323 views
Python equivalent of PHP’s compact() and extract()
compact() and extract() are functions in PHP I find tremendously handy. compact() takes a list of names in the symbol table and creates a hashtable with just their values. extrac …
1
vote
3answers
56 views
default parameter values are evaluated ONCE
Hello. I've found a strange issue with subclassing and dictionary updates in New-Style Classes:
Python 2.6.2 (r262:71605, Apr 14 2009, 22:40:02) [MSC v.1500 32 bit (Intel)] on
win …
