1
vote
Python for loop question
If all you need is the number printed out:
print '%s %s, %s' % (i, e, a)
This assumes that e and a are the numbers you want (or that's wh …
3
votes
Django “login() takes exactly 1 argument (2 given)” error
One possible fix:
from django.contrib import auth
def login(request):
# ....
auth.login(request, user)
# ...
Now your view name doesn't overwrite djan …
0
votes
Error when using a Python constructor
Here's one way to achieve this:
class FileDetails:
def __init__(self, *args, **kwargs):
if len(args) == 3:
self.conn, self.sql, self.path = args
elif …
0
votes
Alice vs Python for someone with zero experience
I think programmers are the last group of people you should ask for such advice. Mostly because you'll get fairly predictable responses about how Alice and the visual interface seems condescending …
2
votes
How do I start a session in a Python web application?
You might consider looking into the Beaker library for Python which isn't tied to any one web framework an will work in a WSGI compatible environment:
…
0
votes
Basic Python dictionary question
The way you're storing your values, you'll need something like:
value1, value2 = d['key'].split(', ')
print value1, value2
or to iterate over all values:
…
2
votes
About Python’s Mixed Numeric Data Types converting results up to the most complicated operand…
Suppose you had a unified numeric type and you typed the following statements:
a = 42
b = 42.24
c = 4 + 2j
How would this be any different from what you get today? …
0
votes
how to print python location(where python is install) in the output
Try:
>>> import sys
>>> print sys.prefix
See the documentation for the sys …
0
votes
Python: Possible to share in-memory data between 2 separate processes
Why not just use a database for the shared data? You have a multitude of lightweight options where you don't need to worry about the concurrency issues: sqlite, any of the nosql/key-value breed of …
1
vote
remove duplicates from nested dictionaries in list
Here's one way:
keyfunc = lambda d: (d['value3'], d['value4'])
from itertools import groupby
giter = groupby(sorted(L, key=keyfunc), keyfunc)
L2 = [g[1].next() for g in giter]
pri …
0
votes
How does python for loop work?
Python's for loop works with iterators, which must implement the iterator protocol. For more details see:
…
