A syntactic construct which provides a concise way to create lists.
1
vote
3answers
33 views
checking if combination already exists from list comprehension
As part of learning Python I have set myself some challenges to see the various ways of doing things. My current challenge is to create a list of pairs using list comprehension. Part one is to make a ...
1
vote
1answer
44 views
Take two a list of strings as input in Python
I'm new to Python and I'm trying to take a list of strings as input using List comprehensions. Here is what I've tried and it gives me errors.
m,n = raw_input().strip().split()
matrix = [ [str(in) ...
0
votes
2answers
44 views
Why the list comprehension variable is accessible after the operation is done? [duplicate]
As part of another experience i encountered a problem in the list comprehension. In order to put simply, if I am trying the following code:
m = [ k**2 for k in range(7)]
print m
[0, 1, 4, 9, 16, ...
1
vote
2answers
39 views
Python exception handling in list comprehension
I have a Python function called plot_pdf(f) that might throw an error. I use a list comprehension to iterate over a list of files on this function:
[plot_pdf(f) for f in file_list]
I want to use ...
0
votes
1answer
30 views
unable to call a function inside an iter chain in python list comprehension
I am using the following iter chain, to generate a list -
from itertools import chain
from utils import my_func // custom function written that performs a function.
a = list(chain.from_iterable((u, ...
0
votes
2answers
48 views
Understanding Python List Comprehension equivalent
I have the following code:
listOfStrings = ['i_am_exercising', 'python_functional', 'lists_comprehension']
[ "".join([elem.title() for elem in splited]) for splited in [el.split("_")for el in ...
3
votes
7answers
68 views
python list comprehension with two values in one iteration
I want to generate a list in python as follows -
[1, 1, 2, 4, 3, 9, 4, 16, 5, 25 .....]
You would have figured out, it is nothing but n, n*n
I tried writing such a list comprehension in python as ...
0
votes
2answers
64 views
Equivalent to SRFI 42's :while in Racket's comprehensions
The eager comprehensions in SRFI 42 can have a :while clause that runs a generator while some condition holds, for example: (list-ec (:while (:range i 10) (< (* i i) 50)) i) returns the list (0 1 2 ...
0
votes
5answers
84 views
List comprehension replacing items that are not float or int
I have a 2 item list.
Sample inputs:
['19(1,B7)', '20(1,B8)']
['16 Hyp', '16 Hyp']
['< 3.2', '38.3302615548213']
['18.6086945477694', '121.561539536844']
I need to look for anything that isn's ...
0
votes
4answers
61 views
Python Nested List Comprehension with two Lists
I understand how the simple list comprehension works eg.:
[x*2 for x in range(5)] # returns [0,2,4,6,8]
and also I understand how the nested list comprehesion works:
w_list = ["i_have_a_doubt", ...
1
vote
2answers
28 views
incrementing defaultdict inside list comprehension (Python)
I have this:
self.lines = [...]
cnt = defaultdict(int)
for line in self.lines:
cnt[line] += 1
Now this works. But I wonder if it (incrementing count of particular lines in ...
0
votes
0answers
89 views
Haskell - list comprehension can't enumerate N × N [duplicate]
I have to write a function which returns a list of all pairs (x,y) where x,
y ∈ N , and:
x is the product of two natural numbers (x = a • b, where a, b ∈ N) and
x is really bigger than 5 but really ...
0
votes
3answers
65 views
Haskell - List Comprehension - get Input-Elements
I have some problem with list comprehension, if the input is a list.
In these all III excercises it's not allowed to use: map, filter and concat!!!
Part I
Requirements:
A funktion f1 gets a list ...
0
votes
2answers
66 views
Replacing single value in dict in python list comprehension with other items
Currently I am populating a generator from networkx's MultiDiGraph module, in this way:
new_u0_edges = ((u, new_u1, key, edata) for u, v, key, edata in
self.g.edges_iter(u0, ...
1
vote
2answers
37 views
adding value limitations on list comprehension
I am trying to find a clean way of grabbing the difference between the values of two int tuples. The tuples themselves have limitations though as they represent RGB colors. This is what I have so far:
...
-1
votes
0answers
11 views
Create a list of tuples with specific attributes in Haskell [closed]
this is my first post here.
filter_2 x a b y c = if ((x == a*b, a <- [1..], b <- [1..], x <- [6..499]) && (y == c*c, c <- [1..999]) && (x `mod` y == 0)) then True else ...
3
votes
2answers
128 views
How to express [42 | x == y] with for comprehensions?
I have some pieces of code where I generate multiple lists (via for comprehensions) and then concatenate them. There are some one-element lists where this doesn't work though. In Haskell I would do ...
3
votes
1answer
52 views
Non-exhaustive Pattern exception, for bind but not for do
To put into context, I was converting a list comprehension (from there) doing "pattern filtering" to its monadic counterpart (do and bind), then I meet an exception.
I start with these definitions ...
0
votes
4answers
51 views
How can I compare a unicode type to a string in python?
I am trying to use a list comprehension that compares string objects, but one of the strings is utf-8, the byproduct of json.loads. Scenario:
us = u'MyString' # is the utf-8 string
Part one of my ...
0
votes
3answers
167 views
most idiomatic way to implement recursive list comprehension in F#
the question in short: What is the most idiomatic way to do "recursive List comprehension" in F#?
more detailed: As I have learned so far (I am new to F#) we have essentially the following tools to ...
0
votes
2answers
48 views
python nested dict comprehension with tuple as key
I have a dict like so:
{ ('name', 'user1'): 'foo',
('user', 'user1'): 'bar',
('name', 'user2'): 'bat',
('user', 'user2'): 'baz' }
and I would like to convert to:
{ 'user1': {'name': 'foo', ...
0
votes
1answer
29 views
Organize Iris Data in python
given the following information:
http://archive.ics.uci.edu/ml/machine-learning-databases/iris/iris.data
i need to have an output that:
Sepal length 2. Sepal width 3. Petal length 4. Petal width ...
1
vote
3answers
35 views
how to access a nested comprehensioned-list
I have a working solution for creating a list some of random numbers, count their occurrencies, and put the result in a dictionary which looks the following:
random_ints = [random.randint(0,4) for _ ...
0
votes
2answers
39 views
Getting <generator object <genexpr>
I have 2 lists:
first_lst = [('-2.50', 0.49, 0.52), ('-2.00', 0.52, 0.50)]
second_lst = [('-2.50', '1.91', '2.03'), ('-2.00', '1.83', '2.08')]
I want to do the following math to it:
Multiply 0.49 ...
-2
votes
2answers
104 views
Haskell Defining a List and List Comprehension
Good morning!
I am trying to define a list that takes in all possible Address types, which I have previously defined, and use list comprehension to do so.
Here's what I've got for earlier ...
1
vote
2answers
43 views
Merging some elements inside a list
Given this nested list:
nested_lst = [u'Tom', ['50', ' 1.85', ' 112', ' 60', ' 1.90', ' 115']]
I'd like to join every 3 elements of nested_lst[1] for the result of:
nested_lst = [u'Tom', ...
-1
votes
1answer
46 views
python: what is go keyword in generator expression while operating dictionary
This is a fairly simple query while I was checking out various discussions on Dictionary comprehension over here.
SO I did something like this:
newlist=[{v:k} for k,v in dicnew.items() if v==value]
...
4
votes
1answer
101 views
What is the advantage of a list comprehension?
What is the advantage of using a list comprehension over a for loop in Python?
Is it mainly to make it more humanly readable, or are there other reasons to use a list comprehension instead of a loop?
...
0
votes
1answer
28 views
Python - 2d list max based on certain part of inner list
So I have a 2-dimensional list (as in a list of lists) and I'm trying to find the largets inner list based on their third element.
This is what I have so far, but it only returns j[2], not the entire ...
0
votes
2answers
38 views
converting dates and times with list comprehension
I have a whole bunch of data and there are two lists consisting of dates and times that look as such:
dates: year-month-day
times: hour:minute:second
so I take them appart and put each into a ...
1
vote
3answers
43 views
Python - List comprehension with multiple arguments in the for
I have this current list comprehension:
...
cur = [[14, k, j] for j, k in rows[14], range(15)]
...
and it is giving me the following error:
...
cur = [[14, k, j] for j, k in rows[14], ...
10
votes
2answers
107 views
Python - find incremental numbered sequences with a list comprehension [duplicate]
I have a sequence of numbers in a list and I'm looking for an elegant solution, preferably list comprehension, to get the individual sequences (including single values). I have solved this small ...
0
votes
3answers
61 views
How do I convert this into a comprehension? (Python)
This function produces the sum of the first n values, the sum of the second n values...etc.
Here is the function:
def collect_sum(iterable,n):
for e in range(1,len(ite)+1):
if e%n==0:
...
5
votes
4answers
94 views
Is there any way to shorten this Python generator expression?
I need to build a generator and I was looking for a way to shorten this for loop into a single line. I tried enumerate but that did not work.
counter=0
for element in string:
if ...
3
votes
1answer
94 views
Why this list comprehension is faster than equivalent generator expression?
I'm using Python 3.3.1 64-bit on Windows and this code snippet:
len ([None for n in range (1, 1000000) if n%3 == 1])
executes in 136ms, compared to this one:
sum (1 for n in range (1, 1000000) if ...
2
votes
1answer
101 views
Sieve of Sundaram - list comprehension
I am trying to write a function that calculates all odd prime numbers from 1..n using the "Sieve of Sundaram" algorithm.
Here is my try:
sSund :: Integer -> [Integer]
sSund n = [ i * 2 + 1 | i ...
0
votes
4answers
43 views
Comparing values from different tuples, list comprehension
I have two lists of tuples:
old = [('6.454', '11.274', '14')]
new = [(6.2845306, 11.30587, 13.3138)]
I'd want to compare each value from the same position (6.454 against 6.2845306 and so on) and ...
0
votes
2answers
33 views
Creating dictionary of dictionaries in python 2.6
I have a line of code in python2.7 that generates a dictionary of empty dictionaries:
values=[0,1,2,4,5,8]
value_dicts={x:{} for x in values}
which throws a syntax error when run on python2.6.
I ...
0
votes
2answers
65 views
Global variable's value lost between function calls in python
I know I must have missed something basic -- just want to make sure I get the precise answer.
I have the following code. Why CACHE_KEYS is still None after load() while CACHE is not?
import bisect
...
0
votes
2answers
41 views
Python: List Comprehension With unicode validaton
Let say I have a list that contains string: ta, fa, ba, ut and lets call our list to be some_list = ['ta', 'fa', 'ba', 'ut']
What I want to do is, in pseudocode:
for x in some_list:
if ...
1
vote
3answers
83 views
Using condition in list comprehension in haskell
I want to use list comprehension to print only true
listTo::(a->b)->[a]->[b]
listTo f list=[f(x)|x<-list,x==True]
isTrue::Int->Bool
isTrue n
|n>=5 =True
|n<5 =False
...
-4
votes
1answer
64 views
Python List Comprehension: Squaring odds lambda [closed]
List comprehension is typically used to filter and transform lists.
Given the variable nums, whose value is a list of integers, write an assignment statement that assigns to the variable ...
1
vote
3answers
67 views
Create a tuple of lists from a list
Is there a way to create a tuple of lists from a list comprehension?
Something like:
actual_clients_emails, actual_client_names = [partner.email, partner.name for partner in ...
0
votes
2answers
40 views
How to remove code duplicity in python list comprehension?
How to resolve the following code duplicity by combining into one list comprehension?
myList =[ //someList ]
thierList=[ //someOtherList ]
if name:
[x for x in ...
2
votes
1answer
40 views
Is it possible to collect results from callbacks through coffeescript comprehensions?
Suppose I have array of objects, each have some asynchronous readValue function, which accepts callback as its parameter, which will be fired when value is available for this object.
My goal is to ...
2
votes
2answers
94 views
Recursive list comprehension for permutation. Python
i have a function in python, which is programmed recursive in a list comprehension. But i don't understand it clearly what really happens in it!
def permut(s,l):
if l == []: return [[s]]
...
5
votes
2answers
54 views
Is it safe to assign list comprehension to the original list?
Is the following safe?
x = [1, 2, 3, 4]
x = [y+5 for y in x]
Does the list comprehension evaluate first, creating a new list, and then assign that new list to x?
I was told once that changing a ...
1
vote
3answers
54 views
Find unique tuples in a list(ignore order) while preserving the others' original order in python?
Say I have a list looks something like this:
a = [(1,2),(3,1),(2,1),(4,5),(9,3),(1,3)]
And afterwards, I want to have something looks like this:
b = [(1,2),(3,1),(4,5),(9,3)]
Many Thanks!
0
votes
3answers
67 views
Python: lists of tuples paired with dictionary keys, is this a good method of data classification?
I am new to python, and am setting up a large dataset to work on, and wanted to check and make sure that I am doing this in the most optimized manner possible, which right now I am pretty sure I am ...
4
votes
4answers
157 views
Using or in list comprehension
I'm trying to take out every number between 1 to 10 that is divisible by either 5 or 3
Here is my code till now -
giveList =
[ x
| x <- [1..10] ,
(x `mod` 5 == 0) or (x `mod` 3 == 0)
]
And ...

