Tagged Questions

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
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
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 ...
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, ...