当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python os.cpu_count()用法及代码示例


Python中的OS模块提供了与操作系统进行交互的函数。操作系统属于Python的标准实用程序模块。该模块提供了使用依赖于操作系统的函数的便携式方法。

os.cpu_count()Python中的方法用于获取系统中的CPU数量。如果系统中的CPU数量不确定,则此方法返回None。

用法: os.cpu_count() 

参数:不需要任何参数。

返回类型:此方法返回一个整数值,该整数值表示系统中的CPU数量。如果不确定CPU的数量,则不返回任何内容。

代码:使用os.cpu_count()方法获取系统中的CPU数量
# Python program to explain os.cpu_count() method   
  
# importing os module  
import os 
  
  
# Get the number of CPUs 
# in the system using 
# os.cpu_count() method 
cpuCount = os.cpu_count() 
  
# Print the number of 
# CPUs in the system 
print("Number of CPUs in the system:", cpuCount)
输出:
Number of CPUs in the system:4


相关用法


注:本文由纯净天空筛选整理自ihritik大神的英文原创作品 Python | os.cpu_count() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。