Python os.cpu_count()
Python中的os.cpu_count()方法用于获取系统中cpu的数量。如果系统中的cpu数量不确定,则此方法返回None。
语法:os.cpu_count()
参数:不需要参数。
返回类型:该方法返回一个整数值,表示系统中cpu的数量。如果cpu数量不确定,则返回None。
示例1
使用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