multiprocessing.pool.Pool.starmap()

starmap(func, iterable[, chunksize])

Like map() except that the elements of the iterable are expected to be iterables that are unpacked as arguments.

Hence an iterable of [(1,2), (3, 4)] results in [func(1,2), func(3,4)].

New in version 3.3.

doc_python
2016-10-07 17:37:54
Comments
Leave a Comment

Please login to continue.