Tagged Questions

in Python, List comprehensions provide a concise way to create lists without resorting to use of map(), filter() and/or lambda

learn more… | top users | synonyms

49
votes
3answers
8k 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: dict = {(k,v) for ...
45
votes
5answers
11k views

Python List Comprehension Vs. Map

Is there a reason to prefer using map() over list comprehension or vice versa? Is one generally more effecient or generally considered more pythonic than the other?
44
votes
9answers
14k 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_menuitems] But I get in ...
34
votes
5answers
4k 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 range(256)]
27
votes
9answers
7k views

List comprehension in Ruby

To do the equivalent of Python list comprehensions, I'm doing the following: some_array.select{|x| x % 2 == 0 }.collect{|x| x * 3} Is there a better way to do this...perhaps with one method call?
15
votes
3answers
3k views

Is it possible to use 'else' in a python list comprehension?

Here is the code I was trying to turn into a list comprehension: table = '' for index in xrange(256): if index in ords_to_keep: table += chr(index) else: table += replace_with ...
15
votes
7answers
763 views

In Python, is it better to use list comprehensions or for-each loops?

Which of the following is better to use and why? Method 1: for k, v in os.environ.items(): print "%s=%s" % (k, v) Method 2: print "\n".join(["%s=%s" % (k, v) for k,v in ...
14
votes
3answers
3k views

Python-like list comprehension in Java

Since Java doesn't allow passing methods as parameters, what trick do you use to implement Python like list comprehension in Java ? I have a list (ArrayList) of Strings. I need to transform each ...
13
votes
7answers
445 views

Is it Pythonic to use list comprehensions for just side effects?

Think about a function that I'm calling for it's side effects, not return values(like printing to screen, updating gui, printing to a file, etc.). def fun_with_side_effects(x): ...side ...
13
votes
4answers
765 views

Python's list comprehension vs .NET LINQ

The following simple LINQ code string[] words = { "hello", "wonderful", "linq", "beautiful", "world" }; // Get only short words var shortWords = from word in words where word.Length <= 5 ...
13
votes
3answers
2k views

What do backticks mean to the python interpreter: `num`

I'm playing around with list comprehensions and I came across this little snippet on another site: return ''.join([`num` for num in xrange(loop_count)]) I spent a few minutes trying to replicate ...
13
votes
2answers
3k views

Double Iteration in List Comprehension

In Python you can have multiple iterators in a list comprehension, like [(x,y) for x in a for y in b] for some suitable sequences a and b. I'm aware of the nested loop semantics of Python's list ...
12
votes
4answers
197 views

Alternative to list comprehension if there will be only one result

I'm starting to get used to list comprehension in Python but I'm afraid I'm using it somewhat improperly. I've run into a scenario a few times where I'm using list comprehension but immediately ...
11
votes
5answers
911 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 comprehensions which I saw ...
11
votes
5answers
3k views

Python's most efficient way to choose longest string in list?

I have a list of variable length and am trying to find (most likely) a list comprehension to allow me to see if the list item currently being evaluated is the longest string contained in the list. And ...
10
votes
5answers
599 views

if else in a list comprehension

I have a list l: l = [22, 13, 45, 50, 98, 69, 43, 44, 1] For numbers above 45 inclusive, I would like to add 1; and for numbers less than it, 5. I tried [x+1 for x in l if x >= 45 else x+5] ...
10
votes
4answers
2k views

Create List of Single Item Repeated n Times in Python

I know a list comprehension will do this, but I was wondering if there is an even shorter (and more Pythonic?) approach. I want to create a series of lists, all of varying length. Each list will ...
10
votes
7answers
744 views

Haskell map/zip Vs. list comprehension

Which of the following are you most likely to write? r = zip xs $ map sqrt xs or r = [(x, sqrt x) | x <- xs] Sample code on the Internet seems to indicate that the former is more abundant and ...
10
votes
5answers
3k 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 restrictions and a lot of ...
9
votes
2answers
262 views

Recursion or list comprehension?

Working through Learn You a Haskell For Great Good, in the chapter on higher-order functions the author walks through an implementation of a few different library functions. When coming to the ...
9
votes
2answers
2k views

Python: if/else in list comprehension?

How can I do the following in Python? row = [unicode(x.strip()) for x in row if x is not None else ''] Essentially, (1) replace all the Nones with empty strings, and then (2) carry out a ...
9
votes
3answers
1k views

Why don't Haskell list comprehensions cause an error when pattern match fails?

I'm trying to understand how Haskell list comprehensions work "under the hood" in regards to pattern matching. The following ghci output illustrates my point: Prelude> let myList = [Just 1, Just ...
9
votes
5answers
721 views

How do I create a list of Python lambdas (in a list comprehension/for loop)?

I want to create a list of lambda objects from a list of constants in Python; for instance: listOfNumbers = [1,2,3,4,5] square = lambda x: x * x listOfLambdas = [lambda: square(i) for i in ...
9
votes
8answers
8k 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]] I would like to ...
8
votes
5answers
160 views

Python: Intertwining two lists

What is the pythonian way of doing the following: I have two lists a and b of the same length n, and I want to form the list c = [a[0], b[0], a[1], b[1], ..., a[n-1], b[n-1]]
8
votes
4answers
229 views

Python list comprehension overriding value

have a look at the following piece of code, which shows a list comprehension.. >>> i = 6 >>> s = [i * i for i in range(100)] >>> print(i) When you execute the code ...
8
votes
4answers
453 views

List comprehension: making lists of lists

hi im trying to make a function in haskell that takes a number a makes a partion of it using lists i.e. for number 4 it would create [[1,1,1,1],[1,1,2],[1,3],[2,2],[4]]. I was thinking of using list ...
8
votes
8answers
875 views

Show me some cool python list comprehensions [closed]

One of the major strengths of python and a few other (functional) programming languages are the list comprehension. They allow programmers to write complex expressions in 1 line. They may be ...
8
votes
8answers
24k 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, and return the two ...
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 ...
8
votes
2answers
665 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#, Erlang, Haskell and C#) - ...
7
votes
6answers
126 views

proper use of list comprehensions - python

Normally, list comprehensions are used to derive a new list from an existing list. Eg: >>> a = [1, 2, 3, 4, 5] >>> [i for i in a if i > 2] [3, 4, 5] Should we use them to ...
7
votes
3answers
146 views

Is there any intermediate data structure created in list comprehensions

It seems like foldr does some kind of fusion with list comprehension, thus it requires less memory (11mb) allocation compared tofoldl (21mb) in this e.g. myfunc = sum $ foldr g acc [ f x | x <- xs ...
7
votes
5answers
220 views

How to find students with the best grades in a list?

Suppose, I have a list of Students. Students have fields like name, birth date, grade, etc. How would you find Students with the best grade in Scala? For example: List(Student("Mike", "A"), ...
7
votes
1answer
81 views

Python conversion madness

I have a code understanding problem related to python: def convex_hull(pts): """Returns the points on the convex hull of pts in CCW order.""" for m in (2 ** (2 ** t) for t in ...
7
votes
3answers
325 views

Fastest way to get the last element of a list in Haskell

What is the fastest way to get the last element of a list in Haskell. Also in next iteration, I want to remove first and last element of the list. What is the most elegant way to do it? I am trying ...
7
votes
3answers
342 views

Haskell: List Comprehension to Combinatory

Inspired by this article. I was playing with translating functions from list comprehension to combinatory style. I found something interesting. -- Example 1: List Comprehension *Main> ...
7
votes
6answers
157 views

elegantly splitting a list (or dict) into two via some arbitrary function in python

Is there any elegant way of splitting a list/dict into two lists/dicts in python, taking in some arbitrary splitter function? I could easily have two list comprehensions, or two selects, but it ...
7
votes
2answers
214 views

List comprehension in Haskell

I've been using the following code to get all combinations of a pre-determined amount of numbers: getList x = [ [a,b,c] | a <- [1..x], b <- [1..x], c <- [1..x]] This was fine to begin ...
7
votes
2answers
194 views

Line continuation for list comprehensions or generator expressions in python

How are you supposed to break up a very long list comprehension? [something_that_is_pretty_long for something_that_is_pretty_long in somethings_that_are_pretty_long] I have also seen somewhere that ...
7
votes
7answers
497 views

How to parallelize list-comprehension calculations in Python?

Both list comprehensions and map-calculations should -- at least in theory -- be relatively easy to parallelize: each calculation inside a list-comprehension could be done independent of the ...
7
votes
6answers
694 views

Python - removing items from lists

# I have 3 lists: L1 = [1, 2, 3, 4, 5, 6, 7, 8, 9] L2 = [4, 7, 8] L3 = [5, 2, 9] # I want to create another that is L1 minus L2's memebers and L3's memebers, so: L4 = (L1 - L2) - L3 # Of course this ...
7
votes
6answers
1k views

Counting positive elements in a list with Python list comprehensions

I have a list of integers and I need to count how many of them are > 0. I'm currently doing it with a list comprehension that looks like this: sum([1 for x in frequencies if x > 0]) It seems ...
7
votes
5answers
995 views

Recursive list comprehension in Python?

Is it possible to define a recursive list comprehension in Python? Possibly a simplistic example, but something along the lines of: nums = [1, 1, 2, 2, 3, 3, 4, 4] willThisWork = [x for x in nums if ...
7
votes
3answers
306 views

Nested cartesian product of Haskell lists

I would like to make a method where I could give it a list of lengths and it would return all combinations of cartesian coordinates up to those lengths. Easier to explain with an example: cart [2,5] ...
7
votes
3answers
4k 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 distribution, I thought it ...
7
votes
8answers
3k views

python list comprehensions; compressing a list of lists?

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, A, and I have a ...
7
votes
4answers
1k views

C# List Comprehensions = Pure Syntactic Sugar?

Consider the following C# code: IEnumerable numbers = Enumerable.Range(0, 10); var evens = from num in numbers where num % 2 == 0 select num; Is this pure syntactic sugar to allow me to write a for ...
7
votes
2answers
999 views

python: list comprehension tactics

I'm looking to take a string and create a list of strings that build up the original string. e.g.: "asdf" => ["a", "as", "asd", "asdf"] I'm sure there's a "pythonic" way to do it; I think I'm ...
7
votes
12answers
739 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. My first ...

1 2 3 4 5 8