當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。