Python| os.cpu_count() 方法
Python中的OS 模块提供了与操作系统交互的功能。操作系统属于 Python 的标准实用程序模块。该模块提供了一种使用操作系统相关功能的可移植方式。
Python中的os.cpu_count()
方法用于获取系统中的 CPU 数量。如果系统中的 CPU 数量未确定,则此方法返回 None。
Syntax: os.cpu_count()
Parameter: No parameter is required.
Return Type: This method returns an integer value which denotes the number of CPUs in the system. None is returned if the number of CPUs is undetermined.
代码:使用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