Mega Code Archive

 
Categories / Python / System
 

Call os exit to terminate a program

def outahere():     import os     print 'Bye os world'     os._exit(99)     print 'Never reached' if __name__ == '__main__': outahere()