how to kill python process started by excel

Solutions on MaxInterview for how to kill python process started by excel by the best coders in the world

showing results for - "how to kill python process started by excel"
Liam
15 Sep 2017
1'''list running processes'''
2import psutil
3
4for proc in psutil.process_iter():
5    print(proc.name())
6
Elias
15 May 2019
1   proc.kill()
2
similar questions