0
votes
4answers
148 views
How to delete all the items of an expecific key in a list of dicts?
I'm trying to remove some items of a dict based on their key, here is my code:
d1 = {'a': 1, 'b': 2}
d2 = {'a': 1}
l = [d1, d2, d1, d2, d1, d2]
for i in range(len(l)):
if l[i] …
1
vote
2answers
106 views
Getting a dict out of a method?
Hi,
I'm trying to get a dict out of a method, so far I'm able to get the method name, and its arguments (using the inspect module), the problem I'm facing is that I'd like to h …
8
votes
6answers
501 views
‘has_key()’ or ‘in’?
Hi,
I wonder what is better to do:
d = {'a': 1, 'b': 2}
'a' in d
True
or:
d = {'a': 1, 'b': 2}
d.has_key('a')
True
…
2
votes
python ImportError No module named
Does
(local directory)/site-packages/toolkit
have a __init__.py?
To make import walk through your directories every directory must ha …
0
votes
Is Python a job seeker’s choice
Actually look at this graph: http://www.indeed.com/jobtrends?q=django&l= it doesn't look any bad for a Python web ap …
2
votes
What is the best way to access stored procedures in Django’s ORM.
You have to use the connection utility in Django:
from django.db import connection
cursor = connection.cursor()
cursor.execute("SQL STATEMENT CAN BE ANYTHING")
th …
-1
votes
How to limit the maximum value of a numeric field in a Django model?
You could create a pre-save signal:
http://docs.djangoproject.com/en/dev/ref/ …
