Wie man den Python -Prozess tötet, begann von Excel
'''list running processes'''
import psutil
for proc in psutil.process_iter():
print(proc.name())
Courageous Chimpanzee