Tagged Questions
5
votes
3answers
3k views
Length of generator output
Python provides a nice method for getting length of an eager iterable, len(x) that is. But I couldn't find anything similar for lazy iterables represented by generator comprehensions and functions. Of ...
3
votes
2answers
150 views
What's the shortest way to count the number of items in a generator/iterator?
If I want the number of items in an iterable without caring about the elements themselves, what would be the pythonic way to get that? Right now, I would define
def ilen(it):
return ...
1
vote
3answers
102 views
Python dictionary to sorted tuples, can this be done better?
I have an dictonary for my input with the following characteristics:
Each value will be either an integer, string or iterable (other than a string).
If the element is an iterable, each element in ...