mk wrote: > So I have this function I want to map onto a list of sequences of > *several* arguments (while I would want to pass those arguments to each > function in the normal fashion). I realize this is contrived, maybe an
You can either use a list comprehension [f(*args) for args in seq] or starmap() list(itertools.starmap(f, seq)) Peter -- http://mail.python.org/mailman/listinfo/python-list