Tagged Questions

1
vote
5answers
72 views

concatenate items in dictionary in python using list comprehension

EDIT: Clarified the question a bit How can I get a string from a dictionary with the format key1 = value1 key2 = value2 in a relatively fast way ? (relative to plain concatenation)
0
votes
2answers
188 views

why list comprehension is called so in python?

No flaming please, asking as a community wiki so nobody gets reputation here. I know python is not the first language to have list comprehension. I'm just interest in the history of the name. I'm …
4
votes
5answers
102 views

Converting a list of lists to a tuple in Python

I have a list of lists (generated with a simple list comprehension): >>> base_lists = [[a, b] for a in range(1, 3) for b in range(1, 6)] >>> base_lists …
1
vote
4answers
121 views

implementing a per-digit counter using the list monad

So, I was looking at the question here, and built a rather ugly solution for the problem. While trying to clean it up, I started investigating list comprehensions and the list monad. What I decided …
3
votes
4answers
172 views

Python: How do I split a list into groups? [closed]

Possible Duplicate: How do you split a list into evenly sized chunks in Python? I'm looking for the best way to split a given list of arbitrary length into smaller lists of a given size. …
0
votes
1answer
86 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 …
2
votes
1answer
107 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
249 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 …
5
votes
8answers
5k 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 …
1
vote
1answer
52 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 …
0
votes
1answer
24 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 …
4
votes
4answers
402 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 …
5
votes
3answers
144 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 …
1
vote
6answers
95 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
4answers
76 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 2 3 4 5 next
15 30 50 per page