Tagged Questions
6
votes
9answers
2k views
How do I efficiently filter computed values within a Python list comprehension?
The Python list comprehension syntax makes it easy to filter values within a comprehension. For example:
result = [x**2 for x in mylist if type(x) is int]
Will return a list of the squares of ...
5
votes
1answer
148 views
Python: Yield Dict Elements in Producing Coroutines?
Before I say a word, let me thank the community for being the authoritative location for my programming queries as of recent. And pretend those compliments weren't expressed using words. Anyway, the ...
5
votes
6answers
156 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], ...
4
votes
4answers
2k views
Comprehension for flattening a sequence of sequences?
If I have sequence of sequences (maybe a list of tuples) I can use itertools.chain() to flatten it. But sometimes I feel like I would rather write it as a comprehension. I just can't figure out how to ...
3
votes
4answers
255 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
6answers
68 views
How can a function return a dynamic value that depends on the number of receivers in Python?
I was trying to do a "strange" (but useful in my case) function that can return a dynamic list whose len depends on the amount of receiver.
For example:
f() returns a dynamic list of None, so I can ...
2
votes
3answers
64 views
Finding matches in a list property, in a list of class Instances
I have a class, 'Foo', which has a name (string) and a set of data (a list of integers). I need to be able to find 'test' any string/list combination against a list of Foo's, to find any matches. Like ...
2
votes
2answers
91 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 ...
2
votes
3answers
129 views
Set comprehensions don't work on Pydev (Python)
{x for x in range(10)}
works perfectly on IDLE, but when I try this in eclipse (with Pydev plugin) I get a syntax error:
Undefined variable: x
Is it because Pydev doesn't support set ...
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 ...
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
4answers
190 views
Creating a dictionary from a csv file?
I am trying to create a dictionary from a csv file. The first column of the csv file contains unique keys and the second column contains values. Each row of the csv file represents a unique key, value ...
0
votes
3answers
331 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
223 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:
...