首页 > 编程 > Python > 正文

对python捕获ctrl+c手工中断程序的两种方法详解

2020-01-04 13:41:49
字体:
来源:转载
供稿:网友

日常编写调试运行程序过程中,难免需要手动停止,以下两种方法可以捕获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

以上这篇对python捕获ctrl+c手工中断程序的两种方法详解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持VEVB武林网。


注:相关教程知识阅读请移步到python教程频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表