Tagged Questions
The generator-expression tag has no wiki summary.
8
votes
3answers
1k views
Why results of map() and list comprehension are different?
The following test fails:
#!/usr/bin/env python
def f(*args):
"""
>>> t = 1, -1
>>> f(*map(lambda i: lambda: i, t))
[1, -1]
>>> f(*(lambda: i for i in ...
5
votes
2answers
155 views
Why is this genexp performing worse than a list comprehension?
I was trying to find the quickest way to count the number of items in a list matching a specific filter.
In this case, finding how many odd numbers there are in a list.
While doing this, I was ...
4
votes
4answers
160 views
Strange python for syntax, how does this work, whats it called?
print max(3 for i in range(4))
#output is 3
Using Python 2.6
The 3 is throwing me off, heres my attempt at explaining whats going on.
for i in range(4) makes a loop that loops 4 times, ...
4
votes
7answers
3k views
convert string to dict using list comprehension in python
I have came across this problem a few times and can't seem to figure out a simple solution.
Say I have a string
string = "a=0 b=1 c=3"
I want to convert that into a dictionary with a, b and c ...
3
votes
3answers
74 views
In Python, how can I refer to a return-value from a function called within a generator expression?
Simplified, I want to do something like this:
({'publication': obj.pub_name, 'views': obj.views, } for obj = analyze_publication(p) for p in Publication.objects.all())
Of course, that doesn't work.
...
3
votes
2answers
189 views
Using while in list comprehension or generator expressions
I can use if and for in list comprehensions/generator expressions as
list((i for i in range(100) if i*i < 30))
I know this is not the most efficient but bear with me as the condition could be ...
2
votes
1answer
98 views
Is there a way to construct lazy sequences in Python?
There is a Django view that loads Member objects from the database with a certain filter.
Now I need to change this logic to present a specific Member first, and let the rest follow in their natural ...
1
vote
2answers
2k views
Django Custom Queryset filters
Is there, in Django, a standard way to write complex, custom filters for QuerySets?
Just as I can write
MyClass.objects.all().filter(field=val)
I'd like to do something like this :
...
1
vote
5answers
1k views
Use case for nested/multiple list comprehensions or generator expressions. When is it more elegant?
I see this kind of thing sometimes:
(k for k in (j for j in (i for i in xrange(10))))
Now this really bends my brain, and I would rather it wasn't presented in this way.
Are there any use-cases, ...