Python is one of the most versatile and dynamic programming languages used out there. Nowadays, It is the most used programming language, and for good reason. Python gives a programmer the option and the allowance to exit a python program whenever he/she wants.
Table of Contents
Using the quit()
function
A simple and effective way to exit a program in Python is to use the in-built quit()
function. No external libraries need to be imported to use the quit()
function.
This function has a very simple syntax:
1 2 3 |
quit() |
When the system comes up against the quit()
function, it goes on and concludes the execution of the given program completely.
The quit()
function can be used in a python program in the following way:
1 2 3 4 5 |
for a in range(1,5): print(a+2) quit() |
Output:
The Python interpreter encounters the quit()
function after the for loop iterates once, and the program is then terminated after the first iteration.
Using the sys.exit()
function
The sys
module can be imported to the Python code and it provides various variables and functions that can be utilized to manipulate various pieces of the Python runtime environment.
The sys.exit()
function is an in-built function contained inside the sys
module and it is used to achieve the simple task of exiting the program.
It can be used at any point in time to come out of the execution process without having the need to worry about the effects it may have on a particular code.
The sys.exit()
function can be used in a python program in the following way:
1 2 3 4 5 6 7 8 |
import sys a = 5 if a != 12: sys.exit("Values don't match unfortunately") else: print("They match") |
Output:
Using the exit()
function
There exists an exit()
function in python which is another alternative and it enables us to end program in Python.
It is preferable to use this in the interpreter only and is an alternative to the quit()
function to make the code a little more user-friendly.
The exit()
function can be used in a python program in the following way:
1 2 3 4 5 |
for a in range(1,5): print(a+2) exit() |
Output:
The two functions, exit()
and quit()
can only be implemented if and when the site
module is imported to the python code. Therefore, these two functions cannot be used in the production and operational codes.
The sys.exit()
method is the most popular and the most preferred method to terminate a program in Python.
Using the KeyboardInterrupt
command
If Python program is running in cosole, then pressing CTRL + C
on windows and CTRL + Z
on unix will raise KeyboardInterrupt
exception in the main thread.
If Python program does not catch the exception, then it will cause python program to exit. If you have except:
for catching this exception, then it may prevent Python program to exit.
If KeyboardInterrupt
does not work for you, then you can use SIGBREAK
signal by pressing CTRL + PAUSE/BREAK
on windows.
In Linux/Unix, you can find PID of Python process by following command:
and you can kill -9
to kill the python process. kill -9 <pid>
will send SIGKILL
and will stop the process immediately.
For example:
If PID of Python process is 6243, you can use following command:
In Windows, you can use taskkill
command to end the windows process. YOu can also open task manager, find python.exe
and end the process. It will exit Python program immediately.
Using the raise SystemExit
command
Simply put, the raise
keyword’s main function is to raise
an exception. The kind of error you want to raise can be defined.
BaseException
class is a base class of the SystemExit
function. The SystemExit
function is inherited from the BaseException
such that it is able to avoid getting caught by the code that catches all exception.
The SystemExit
function can be raised in the following way in Python code:
1 2 3 4 5 6 7 8 9 10 11 12 |
import time try: x=0 while 1==1: x=x+2 print(x) time.sleep(1) except KeyboardInterrupt: print("Raising SystemExit") raise SystemExit |
Output:
4
6
^C
Raising SystemExit
It can be said that SystemExit
is nothing but an exception that is raised by some of the exit functions in Python described above.
Moreover, the quit()
and sys.exit()
exit functions raise SystemExit
exception to terminate the given program.
Using the os._exit(0)
function
The os
module in Python is capable of providing functions for a fluent interaction with the operating system. The os
module comes directly under Python’s standard utility modules. This module gives a convenient and portable method of utilizing operating system-reliant functionality.
The os._exit()
method can be used after importing the os
module in a Python code.
The os._exit()
method can be utilized to exit the process with specified status without having the need to call cleanup handlers, flushing stdio buffers, etc.
It is generally used in the child process after the os.fork()
system call occurs.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import os pid = os.fork() if pid > 0: print("\nThis is the parent process") info = os.waitpid(pid, 0) if os.WIFEXITED(info[1]) : code = os.WEXITSTATUS(info[1]) print("Child's exit code:", code) else: print("Now in the child process") print("The Process ID is:", os.getpid()) print("Child is now exiting") os._exit(os.EX_OK) |
Output:
Now in the child process
The Process ID is: 294
The Child will now exit
Child’s exit code: 0
That’s all about how to exit program in Python.