123k views
4 votes
How to check which subprocess was not killed python multithreading

User Yanel
by
6.3k points

1 Answer

6 votes

Answer:

try: foundRunningProcess = subprocess.check_output (argumentsArray, **kwargs) return True except Exception as err: return False Note

Step-by-step explanation:

be careful if you are developing with VS Code and using pure Python and Jython.

User Shivam Anand
by
6.0k points