7 lines
84 B
Python
7 lines
84 B
Python
# -*- coding: utf-8 -*-
|
|
import os
|
|
|
|
def get_core_count():
|
|
return os.cpu_count()
|
|
|