python Process kill code example
Example 1: python kill script
import sys
sys.exit()
Example 2: how to stop running code in python
#to stop all execution of code
exit()
Example 3: python kill process windows
import os
os.system("taskkill /im make.exe")
Example 4: linux kill python
ps -elf | grep python
kill -9 <whatever_the_PID_is>