10
votes
How do I merge a 2D array in Python into one string with List Comprehension?
Like so:
[ item for innerlist in outerlist for item in innerlist ]
Turning that directly into a string with separators:
','.join(str(item) for inne …
4
votes
How do I efficiently filter computed values within a Python list comprehension?
The most obvious (and I would argue most readable) answer is to not use a list comprehension or generator expression, but rather a real generator:
def gen_expensive(mylist):
for …
0
votes
Most pythonic way of counting matching elements in something iterable
Not as terse as you are looking for, but more efficient, it actually works with any iterable, not just iterables you can loop over multiple times, and you can expand the things to check for without …
