Hectacon
0
Q:

how to kill python process started by excel

   proc.kill()
0
'''list running processes'''
import psutil

for proc in psutil.process_iter():
    print(proc.name())
0

New to Communities?

Join the community