我正在深入研究 python 的多处理世界。
在观看了一些视频后,由于我的职能性质,我提出了一个问题。
这个函数有 4 个参数:
- 第一个参数是要读取的文件,因此,这是要读取的文件列表。
- 以下 2 个参数是两个不同的字典。
- 最后一个参数是可选参数“debug_mode”,需要设置为“True”
# process_data(file, signals_dict, parameter_dict, debug_mode=False)
file_list = [...]
t1 = time.time()
with concurrent.futures.ProcessPoolExecutor() as executor:
executor.map(process_data, file_list)
t2 = time.time()
问题是:如何为函数指定其余参数?
提前致谢