How can I override the keyboard interrupt? (Python)

前端 未结 3 1820
面向向阳花
面向向阳花 2021-01-11 17:50

Is there anyway I can make my script execute one of my functions when Ctrl+c is hit when the script is running?

相关标签:
3条回答
  • 2021-01-11 18:18

    Use the KeyboardInterrupt exception and call your function in the except block.

    0 讨论(0)
  • 2021-01-11 18:25

    Sure.

    try:
      # Your normal block of code
    except KeyboardInterrupt:
      # Your code which is executed when CTRL+C is pressed.
    finally:
      # Your code which is always executed.
    
    0 讨论(0)
  • 2021-01-11 18:30

    Take a look at signal handlers. CTRL-C corresponds to SIGINT (signal #2 on posix systems).

    Example:

    #!/usr/bin/env python
    import signal
    import sys
    def signal_handler(signal, frame):
        print 'You pressed Ctrl+C - or killed me with -2'
        sys.exit(0)
    signal.signal(signal.SIGINT, signal_handler)
    print 'Press Ctrl+C'
    signal.pause()
    
    0 讨论(0)
提交回复
热议问题