python 捕获ctrl+c

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

 

posted @ 2022-12-27 09:46  myrj  阅读(63)  评论(0编辑  收藏  举报