counters = [1, 2, 3, 4] def inc(x): return x + 10 # Function to be run map(inc, counters) # Collect results