Technical Background
Long-running Python programs, such as server backends or scientific computing programs, require special attention. When performing certain operations, such as using Ctrl C to end a running program, we may need to terminate it early. Usually, there are two possibilities for this situation: one is that the program has an error and the program needs to be stopped for adjustment. The other is that the program itself is correct, but the program runs too slowly, or it may want to end early. In this scenario, we often hope to retain its corresponding calculation results. However, if we use some third-party data storage format to store data, it may not support continuous storage. It is very common to save the results after the program execution is completed. If the program is terminated midway, special means are needed to save its results.
Basic Case
Let’s first look at a relatively simple case: an ordinary program that prints numbers. It prints a number every 1 second. We can use python’s signal. signal to capture this termination signal.
# signal_exit.py import signal import sys def signal_handler(signal, frame): print ('\nSignal Catched! You have just type Ctrl+C!') sys.exit(0) if __name__ == '__main__': import time signal.signal(signal.SIGINT, signal_handler) for x in range(100): time.sleep(1) print (x)
When we run this program halfway and press Ctrl C at the same time, we will get the following results:
$ python3 signal_exit.py
0
1
2
^C
Signal Catched! You have just type Ctrl C!
This result shows that we captured the external operation of Ctrl C during the running of the program , and only after the operation is processed accordingly, the program is terminated. It should be noted that if the termination operation of sys.exit(0) is not added at this time, the program will not be stopped and will continue to run, which is equivalent to catching the abnormal termination signal but not doing any processing.
Pass external parameters to the termination signal
In the above case, we only captured the external signal of "termination of operation", but if we go further, we want to capture it to the end What is the output number, and how to operate it at this time? The signal.signal function itself does not support the passing of many parameters. At this time, it is recommended to create a class by yourself and encapsulate the signal_handler function as a member function of the class, so that we can obtain the corresponding internal parameters, such as the following case As shown:
# signal_exit.py import signal import sys import time class Printer: def __init__(self): self.x = 0 signal.signal(signal.SIGINT, self.signal_handler) def signal_handler(self, signal, frame): print ('\nSignal Catched! You have just type Ctrl+C! The last number is: {}'.format(self.x)) sys.exit(0) def run(self, counter=10): while self.x < counter: print (self.x) time.sleep(1) self.x += 1 if __name__ == '__main__': printer = Printer() printer.run(counter=100)
At this time, if you press Ctrl C at the same time while the program is running, the result will be as follows:
$ python3 signal_exit.py
0
1
2
3
^C
Signal Catched! You have just type Ctrl C! The last number is: 3
As you can see, we succeeded The last output parameter is captured.
The above is the detailed content of How to capture Ctrl+C termination signal in Python3. For more information, please follow other related articles on the PHP Chinese website!

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于Seaborn的相关问题,包括了数据可视化处理的散点图、折线图、条形图等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于进程池与进程锁的相关问题,包括进程池的创建模块,进程池函数等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于简历筛选的相关问题,包括了定义 ReadDoc 类用以读取 word 文件以及定义 search_word 函数用以筛选的相关内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于数据类型之字符串、数字的相关问题,下面一起来看一下,希望对大家有帮助。

VS Code的确是一款非常热门、有强大用户基础的一款开发工具。本文给大家介绍一下10款高效、好用的插件,能够让原本单薄的VS Code如虎添翼,开发效率顿时提升到一个新的阶段。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于numpy模块的相关问题,Numpy是Numerical Python extensions的缩写,字面意思是Python数值计算扩展,下面一起来看一下,希望对大家有帮助。

pythn的中文意思是巨蟒、蟒蛇。1989年圣诞节期间,Guido van Rossum在家闲的没事干,为了跟朋友庆祝圣诞节,决定发明一种全新的脚本语言。他很喜欢一个肥皂剧叫Monty Python,所以便把这门语言叫做python。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

SublimeText3 English version
Recommended: Win version, supports code prompts!

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 Linux new version
SublimeText3 Linux latest version

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
