Python program to find out the number of CPUs
Use the multiprocessing module of python to find the number of CPUs. cpu_count() is the function that returns the count of CPUs.
Algorithm
- Start
- Import multiprocessing module
- Use the cpu_count() function provided in the multiprocessing module, it will return the number of CPU
- Display the count
- End
Program
import multiprocessing print("CPUs count is : ",multiprocessing.cpu_count())
Output
CPUs count is : 4