How many threads are running in my python application?

published May 30, 2015 10:45   by admin ( last modified May 31, 2015 08:00 )

You can ask the threading package about that:

threading.active_count()

 

Not sure why I got 7 though.