0
votes
1answer
30 views
Haskell List Comprehension
I get the error "Not in scope: x" when doing as follows...
blanks :: Sudoku -> [Pos]
blanks (Sudoku su) = [ fst x | x <- posSud | isBlank (snd x) ]
where
isBlank Nothing = True
…
1
vote
1answer
91 views
List comprehension won’t give correct result in Haskell
Hi
I am doing project euler question 136, and came up with the following to test the example given:
module Main where
import Data.List
unsum x y z n = (y > 0) && (z > 0) && …
5
votes
3answers
218 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 …
1
vote
1answer
48 views
How to rearrange this function to return the extended list in Haskell
Hi
I am doing problem 68 at project euler and came up with the following code in Haskell to return the list of numbers which fit the (given) solution:
lists = [n|n<- permutations [1..6] , ring n …
5
votes
3answers
125 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 …
0
votes
1answer
18 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 comprehension …
1
vote
6answers
87 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 not x == '\n']
…
1
vote
5answers
151 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]
My code does not …
1
vote
4answers
70 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 does the opposite.
1
vote
3answers
167 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 …
3
votes
10answers
262 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 to Python. I ran a …
1
vote
3answers
66 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, 'a'), (2, 'a'), (3, …
4
votes
4answers
239 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 they allow things like …
0
votes
3answers
131 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 with each element …
1
vote
3answers
160 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 j in range(3)]
so …
