python调用os.exit()方法来终止进程

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

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

if __name__ == '__main__': outahere()