2020年11月21日

Python 线程池模块threadpool 、 concurrent.futures 的 ThreadPoolExecutor

摘要: 一、threadpool 基本用法 pip install threadpool pool = ThreadPool(poolsize) requests = makeRequests(some_callable, list_of_args, callback) [pool.putRequest(r 阅读全文

posted @ 2020-11-21 17:03 zhangmingda 阅读(1489) 评论(0) 推荐(0) 编辑

math模块

摘要: 请看原文:https://blog.csdn.net/zhtysw/article/details/79856835 math模块中定义了一些数学函数。由于这个模块属于编译系统自带,因此它可以被无条件调用。该模块还提供了与用标准C定义的数学函数的接口。 要注意的是,这些函数无法应用于复数,但是在cm 阅读全文

posted @ 2020-11-21 15:58 zhangmingda 阅读(309) 评论(0) 推荐(0) 编辑

导航