5
votes
3answers
116 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 …
0
votes
1answer
14 views
What are the advantage and disadvantages of using a list comprehension in Python 2.54-6?
I've heard that list comprehensions can be slow sometimes, but I'm not sure why? I'm new to Python (coming from a C# background), and I'd like to know more about when to use a list …
1
vote
6answers
79 views
How to split the file content by space and end-of-line character?
When I do the following list comprehension I end up with nested lists:
channel_values = [x for x in [ y.split(' ') for y in
open(channel_output_file).readlines() ] if x and no …
1
vote
4answers
67 views
Filtering odd numbers
M = [[1,2,3],
[4,5,6],
[7,8,9]]
col2 = [row[1] + 1 for row in M if row[1] % 2 == 0]
print (col2)
Output: [3, 9]
I'm expecting it to filter out the odd numbers, but it …
1
vote
5answers
146 views
Python: complex list comprehensions where one var depends on another (x for x in t[1] for t in tests)
I want to do something like:
all = [ x for x in t[1] for t in tests ]
tests looks like:
[ ("foo",[a,b,c]), ("bar",[d,e,f]) ]
So I want to have the result
all = [a,b,c,d,e,f] …
1
vote
3answers
158 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 tr …
3
votes
10answers
242 views
lambda versus list comprehension performance
Hi,
I recently posted a question using a lambda function and in a reply someone had mentioned lambda is going out of favor, to use list comprehensions instead. I am relatively new …
1
vote
3answers
64 views
Nesting generator expressions in the argument list for a python function call
I like to use the following idiom for combining lists together, sometimes:
>>> list(itertools.chain(*[[(e, n) for e in l] for n, l in (('a', [1,2]),('b',[3,4]))]))
[(1, ' …
4
votes
4answers
234 views
Comprehensions in Python and Javascript are only very basic?
Looking at comprehensions in Python and Javascript, so far I can't see some of the main features that I consider most powerful in comprehensions in languages like Haskell.
Do th …
0
votes
3answers
128 views
Iterating through a list in Python
I am trying to iterate through a list and take each part of the list, encode it and join the result up when it is all done. As an example, I have a string which produces a list wi …
1
vote
3answers
151 views
Python: List comprehension to assign different values
I'm making a 2D list and I would like to initialize it with a list comprehension. I would like it to do something like this:
[[x for i in range(3) if j <= 1: x=1 else x=2] for …
0
votes
3answers
111 views
How can I handle exceptions in a list comprehension in Python?
I have some a list comprehension in Python in which each iteration can throw an exception.
For instance, if I have:
eggs = (1,3,0,3,2)
[1/egg for egg in eggs]
I'll get a Zer …
2
votes
3answers
746 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?
0
votes
6answers
237 views
List of Lists in python?
I need a good function to do this in python.
def foo(n):
# do somthing
return list_of_lists
>> foo(6)
[[1],
[2,3],
[4,5,6]]
>> foot(10)
[[1],
…
1
vote
4answers
285 views
how to rewrite this loop in a more efficient way in python
I have a loop of the following type:
a = range(10)
b = [something]
for i in range(len(a)-1):
b.append(someFunction(b[-1], a[i], a[i+1]))
However the for-loop is killing a lo …
