python获取系统cpu数量

获取系统CPU数量可以使用

import multiprocessing
multiprocessing.cpu_count()

这个模块现在已经从2.6 backport到2.5,应该可以通用

Last updated