Get your own Python server Result Size: 625 x 565
x
 
#Import OS Library
import os
print ("Process abort after printing this line")
#Abort the current running process
os.abort()
print ("Process abort before printing this line")
Process abort after printing this line