How can I override the keyboard interrupt? (Python)

前端 未结 3 1822
面向向阳花
面向向阳花 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.

提交回复
热议问题