20
votes
5answers
1k views
Generator Expressions vs. List Comprehension
When should you use generator expressions vs. list comprehensions in Python and vice-versa?
# Generator expression
(x*2 for x in range(256))
# List comprehension
[x*2 for x in ra …
11
votes
9answers
1k views
Flattening a shallow list in python
On a django project, I was hoping to flatten a shallow list with a nested list comprehension, like this:
[image for image in menuitem.image_set.all() for menuitem in list_of_menui …
7
votes
2answers
389 views
List Comprehension Library for Scheme?
I know there is a list-comprehension library for common lisp (incf-cl), I know they're supported natively in various other functional (and some non-functional) languages (F#, Erlan …
6
votes
5answers
373 views
Are list comprehensions a major part of Haskell
I looked at various Haskell resources on the web, before buying the book, Real World Haskell. Being otherwise excellent, it doesn't seem to contain anything about list comprehensio …
6
votes
12answers
509 views
Most pythonic way of counting matching elements in something iterable
I have an iterable of entries on which I would like to gather some simple statistics, say the count of all numbers divisible by two and the count of all numbers divisible by three. …
6
votes
8answers
2k views
How do I merge a 2D array in Python into one string with List Comprehension?
List Comprehension for me seems to be like the opaque block of granite that regular expressions are for me. I need pointers.
Say, I have a 2D list:
li = [[0,1,2],[3,4,5],[6,7,8]] …
5
votes
3answers
208 views
Running average in Python
Is there a pythonic way to build up a list that contains a running average of some function?
After reading a fun little piece about Martians, black boxes, and the Cauchy distribut …
5
votes
3answers
124 views
Python: create a dictionary with list comprehension
I like the python list comprehension operator (or idiom, or whatever it is).
Can it be used to create dictionaries too? For example, by iterating over pairs of keys and values:
d …
5
votes
4answers
254 views
Scala’s for-comprehensions: vital feature or syntactic sugar?
When I first started looking at Scala, I liked the look of for-comprehensions. They seemed to be a bit like the foreach loops I was used to from Java 5, but with functional restric …
5
votes
7answers
261 views
List Comprehensions in Python : efficient selection in a list
Hi
Let's suppose that I have a list of elements, and I want to select only some of them, according to a certain function (for example a distance to an other element).
I want to h …
5
votes
7answers
587 views
python list comprehensions; compressing a list of lists?
Hi, guys. I'm trying to find the most elegant solution to a problem and wondered if python has anything built-in for what I'm trying to do.
What I'm doing is this. I have a list, …
5
votes
8answers
4k views
Python: For each list element apply a function across the list
Given [1,2,3,4,5], how can i do something like 1/1, 1/2, 1/3,1/4,1/5, ...., 3/1,3/2,3/3,3/4,3/5,.... 5/1,5/2,5/3,5/4,5/5
I would like to store all the results, find the minimum, a …
5
votes
2answers
440 views
Unexpected list comprehension behaviour in Python.
I believe I'm getting bitten by some combination of nested scoping rules and list comprehensions. Jeremy Hylton's blog post is suggestive about the causes, but I don't really unde …
5
votes
3answers
824 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(*( …
5
votes
9answers
731 views
How do I efficiently filter computed values within a Python list comprehension?
The Python list comprehension syntax makes it easy to filter values within a comprehension. For example:
result = [x**2 for x in mylist if type(x) is int]
Will return a list of …
