Python os.cpu_count() - 获取系统中cpu的数量

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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程