What is the preferred way to tell someone "I want to apply func to each element in iterable for its side-effects."
# Option 1... clear, but two lines.
for element in iterable:
func(element)
# Option 2... even more lines, but could be clearer.
def walk_for_side_effects(iterable):
for element in iterable:
pass
walk_for_side_effects(map(func, iterable)) # Assuming Python3's map.
# Option 3... builds up a list, but this how I see everyone doing it.
[func(element) for element in iterable]
I'm liking Option 2; is there a function in the standard library that is already the equivalent?
mapand the list comrehension are equivalent. Thewalk_for_side_effectscall is useless. Use option 1. – Pavel Anossov Jan 21 at 21:33map()returns an iterator. – Martijn Pieters Jan 21 at 21:34for element in iterable: func(element). It's against PEP8 style, but I would say that using list comprehensions to generate a list that is never used is a worse offense. – David Robinson Jan 21 at 21:36