python捕獲ctrl+c手工中斷程式

日常編寫調試運行程式過程中,難免需要手動停止,以下兩種方法可以捕獲ctrl+c立即停止程式

1、使用python的異常KeyboardInterrupt

    try:          while 1:              pass      except KeyboardInterrupt:          pass

2、使用signal模組

    def exit(signum, frame):          print('You choose to stop me.')          exit()      signal.signal(signal.SIGINT, exit)      signal.signal(signal.SIGTERM, exit)      while 1:          pass