multiprocessing库出现报错<=' not supported between instances of 'list' and 'int'的解决方法
from multiprocessing.dummy import Pool
与python默认的map()不同,pool.map()只支持一个迭代器参数的输入,如果需要使用多个迭代器输入,需要使用zip(iterA, iterB)
打包成一个迭代器后再输入,否则会出现报错:
<=' not supported between instances of 'TypeA' and 'int'