Tagged Questions
3
votes
4answers
353 views
Python: an iteration over a non-empty list with no if-clause comes up empty. Why?
How can an iterator over a non-empty sequence, with no filtering and no aggregation (sum(), etc.), yield nothing?
Consider a simple example:
sequence = ['a', 'b', 'c']
list((el, ord(el)) for el in ...