The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
97 views

Why this list comprehension is faster than equivalent generator expression?

I'm using Python 3.3.1 64-bit on Windows and this code snippet: len ([None for n in range (1, 1000000) if n%3 == 1]) executes in 136ms, compared to this one: sum (1 for n in range (1, 1000000) if ...
2
votes
4answers
485 views

Python generator expression if-else

I am using Python to parse a large file. What I want to do is If condition =True append to list A else append to list B I want to use generator expressions for this - to save memory. I am ...
10
votes
3answers
166 views

Are *parameters calls lazy? [duplicate]

Possible Duplicate: Do python's variable length arguments (*args) expand a generator at function call time? Let's say you have a function like this: def give_me_many(*elements): #do ...
7
votes
3answers
282 views

List comprehension vs generator expression's weird timeit results?

I was ansering this question, I preferred generator expression here and used this, which I thought would be faster as generator doesn't need to create the whole list first: >>> ...
5
votes
4answers
389 views

Need to understand Python generator object

In the following: name = 'TODD' chars = set('AEIOU') for ii in range(-1, int(math.copysign(len(name) + 1, -1)), -1): if any((cc in chars) for cc in name[ii]): print 'Found' else: ...
3
votes
4answers
145 views

Creating a generator expression or list comprehension without variable “x in” (e.g. for range) in Python

In Python, is there any way to write this list comprehension without the "x in" variable (since it is left completely unused)? Same applies to a generator expression. I doubt this comes up very often, ...
4
votes
2answers
144 views

Python generator expression parentheses oddity

I want to determine if a list contains a certain string, so I use a generator expression, like so: g = (s for s in myList if s == myString) any(g) Of course I want to inline this, so I do: any((s ...
3
votes
3answers
82 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. ...
2
votes
1answer
199 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 ...
4
votes
4answers
251 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, ...
7
votes
2answers
1k 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 ...
5
votes
2answers
295 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 ...
8
votes
7answers
8k 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 ...
2
votes
2answers
3k 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 : ...
3
votes
5answers
3k 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, ...
8
votes
3answers
2k 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 ...