submit(fn, *args, **kwargs)
Schedules the callable, fn, to be executed as fn(*args **kwargs)
and returns a Future
object representing the execution of the callable.
1 2 3 | with ThreadPoolExecutor(max_workers=1) as executor: future = executor.submit(pow, 323, 1235) print(future.result()) |
Please login to continue.