Tagged Questions
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
256 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 ...