Answers for "get all threads python"

1

python get current number of threads

from threading import active_count
active_count()
Posted by: Guest on July-01-2021
0

how many threads can i run python

You can run as many threads as you want at once. 

The only thing limiting the amount is the RAM/CPU/etc the computer.
Posted by: Guest on August-06-2021

Python Answers by Framework

Browse Popular Code Answers by Language