1
vote
3answers
143 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
228 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
57 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
229 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
122 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
135 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
110 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 …
0
votes
6answers
232 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],
…
2
votes
3answers
653 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?
1
vote
4answers
252 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 …
5
votes
4answers
237 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 …
4
votes
7answers
242 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 …
2
votes
3answers
122 views
Mapping a nested list with List Comprehension in Python?
I have the following code which I use to map a nested list in Python to produce a list with the same structure.
>>> nested_list = [['Hello', 'World'], ['Goodbye', 'World …
6
votes
5answers
355 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 …
4
votes
6answers
270 views
is there a better way to convert a list to a dictionary in python with keys but no values?
I was sure that there would be a one liner to convert a list to a dictionary where the items in the list were keys and the dictionary had no values.
The only way I could find t …
