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 sum(itertools.imap(lambda _: 1, it)) # or just map in Python 3
but I understand lambda is close to being considered harmful, and lambda _: 1 certainly isn't pretty.
(The use case of this is counting the number of lines in a text file matching a regex, i.e. grep -c.)
_as a variable name, because (1) it tends to confuse people, making them think this is some kind of special syntax, (2) collides with_in the interactive interpreter and (3) collides with the common gettext alias. – Sven Marnach Mar 21 '11 at 22:39_all the time for unused variables (a habit from Prolog and Haskell programming). (1) is a reason for asking this in the first place. I didn't consider (2) and (3), thanks for pointing them out! – larsmans Mar 21 '11 at 22:47