How many threads are running in my python application?
You can ask the threading package about that:
threading.active_count()
Not sure why I got 7 though.
You can ask the threading package about that:
threading.active_count()
Not sure why I got 7 though.