python how to see how many cores are being used code example
Example: how to get number of cores in python
import multiprocessing
multiprocessing.cpu_count() # or os.cpu_count()
import multiprocessing
multiprocessing.cpu_count() # or os.cpu_count()