Skip to content

Home

Execute function for each list element

Executes the provided function once for each list element.

def for_each(itr, fn):
  for el in itr:
    fn(el)

for_each([1, 2, 3], print) # 1 2 3

More like this

Start typing a keyphrase to see matching snippets.