摘要: psutil 模块 import psutil # 逻辑核心 cpu_no = psutil.cpu_count() # 8 # 物理核心 cpu_rel_no = psutil.cpu_count(logical=False) # 4 # 统计CPU的用户/系统/空闲时间 cpu_time = p 阅读全文
posted @ 2020-04-10 22:18 疯狂列表推导式 阅读(98) 评论(0) 推荐(0) 编辑