程序中使用了
try:
except:#这里没加任何异常
这就会导致程序不响应ctrl+c信号
except:前加上这个
except KeyboardInterrupt:
sys.exit(0)
另外,不能直接使用exit(0),会报错