Tagged Questions
5
votes
6answers
157 views
Python, working with list comprehensions
I have such code:
a = [[1, 1], [2, 1], [3, 0]]
I want to get two lists, the first contains elements of 'a', where a[][1] = 1, and the second - elements where a[][1] = 0. So
first_list = [[1, 1], ...
5
votes
4answers
268 views
haskell list comprehension (number theory problem)
I tried solving the following problem in haskell:
Find the smallest number b with (a^b
mod 100) = 1 for every a with
gcd(a,100)=1
I tried this:
head[ b | a <- [1..], b <- [1..], (a^b ...
3
votes
4answers
259 views
how is this a non-sequence?
I'm running a list comprehension of a list of numbers as strings so for example the list looks like this
vals = ['0.13', '324', '0.23432']
and try a list comprehension like this:
best = [x for x ...
2
votes
2answers
92 views
matrix list comprehension mean
This is an offshoot of a previous question which started to snowball. If I have a matrix A and I want to use the mean/average of each row [1:] values to create another matrix B, but keep the row ...
1
vote
2answers
133 views
Python list comprehension and list.remove()
The list signals_by_date stores tuples and each tuple contains 15 numbers. For each tuple within signals_by_date, I want to remove numbers that don't satisfy certain criteria. For some reason, no ...
1
vote
2answers
203 views
elem function of no limit list
list comprehension haskell
paar = [(a,b) | a<-[a | a<-[1..], mod a 3 == 0], b<-[b*b | b<-[1..]]]
a = divisor 3
b = square
The Elements must be constructed by equitable order.
the ...
1
vote
3answers
528 views
Python - Compare two lists in a comprehension
I'm trying to understand how comprehensions work.
I would like to loop through two lists, and compare each to find differences.
If one/or-more word(s) is different, I would like to print this ...
0
votes
3answers
78 views
matrix holes comprehension
This is an offshoot of a previous question which started to snowball. If I have a matrix A and I want to use the mean/average of each row [1:] values to create another matrix B, but keep the row ...
0
votes
1answer
95 views
Haskell: List comprehension of Glade entries
I want to make an entries :: Map(String -> Entry) so I can easily access each entry by name. To this end, I have the code
Just xml ← xmlNew "blah.glade"
...
entries ← fromList $ ...
0
votes
3answers
336 views
Python list dictionary comprehension
I have a few 'list' containing few dictionaries- say 3 dicts.
3 dictionaries as follows:
lstone = [{'dc_test': 1}, {'ac_test':2}, {'con_test':3}]
lsttwo = [{'dc_test': 4}, {'ac_test':5}, ...
0
votes
3answers
224 views
python list comprehension unzipping multiple returns
anyone have any idea how to unpack the values in a tuple for a list comprehension?
So a practical example:
def func(x,y):
return x*2, y*2
x = [1, 2, 3]; y = [1, 2, 3]
a, b = [ func(i,j) for i, ...
-1
votes
1answer
164 views
python list comprehension products
I'm trying to build a specific list comprehension to take data from list of lists/matrix A and matrix B to generate a third matrix, C. I've annotated the code and provided the expected outcome, but ...
-2
votes
1answer
145 views
Making a list comprehension, beginner
I'm new to Python and am trying to understand list comprehensions so I can use it in my code.
pricelist = {"jacket":15, "pants":10, "cap":5, "baseball":3, "gum":1}
products_sold = []
while True:
...