In Python there are a set of 9 exit codes running from 0-8, these exit codes can be helpful to who was the execution of a Python program succession without any error, or if there was an error what was the error related to.
The below table covers the list of all exit codes and their meaning and example of their occurrences.
Exit Code | Meaning | Occurrences |
---|---|---|
0 | Successful execution with no errors | Example: Program completed successfully |
1 | Generic or unspecified error | Example: Unclassified or miscellaneous errors |
2 | Command line syntax error or improper usage | Example: Invalid command line arguments or options |
3 | Missing file or resource | Example: File not found or required resource unavailable |
4 | Input/output (I/O) error | Example: Failed input/output operations (e.g., file reading) |
5 | Operating system or system-related error | Example: System-related failures (e.g., permission denied) |
6 | User interrupt | Example: User interruption (e.g., keyboard interrupt) |
7 | Improper software/library version | Example: Incompatibility or incorrect software version |
8 | Unhandled exception or software bug | Example: Uncaught exceptions or unexpected software errors |
Example: Exit Code 0: Successful execution with no errors
print("Hello there")
# python3 sample.py
Hello there
# $?
0
Example: Exit Code 1: Generic or unspecified error:
import sys
print("An unspecified error occurred while executing the Python program.")
sys.exit(1)
# python3 sample.py
An unspecified error occurred while executing the Python program.
# echo $?
1
Example:
import sys
print(sys.argv[2])
# python3 sample.py 12
Traceback (most recent call last):
File "/Users/c2ctechtv/Desktop/sample.py", line 3, in <module>
print(sys.argv[2])
IndexError: list index out of range
# echo $?
1
Example: Exit Code 2: Command line syntax error or improper usage:
import sys
if len(sys.argv) < 2:
print("Please provide all input parameters.")
sys.exit(2)
# python3 sample.py 1
Please provide all input parameters
# echo $?
2
-
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to Python,
- Python: Convert Date to DateTime
- How to sort a List using Lambda in Python
- Python matplotlib segmentation fault: 11 macOS Big Sur
- What is Terminal Velocity and its Formula? How to calculate it programmatically?
- How to install Python 3.11 on Mac
- How to flatten a nested list in Python
- Python: Pandas Merge DataFrames on Index Example
- How to Run all Cells at Once Jupyter Notebook
- Python - Convert float to String
- How to add borders to tkinter label text
- How to Exit a Loop in Python Code
- [Python] Fix: ValueError: All arrays must be of the same length
- Sorting an array using Bubble Sort in Python Programming
- How to Unzip a file using Python
- Python: Merge DataFrames Pandas Outer Join Example
- Change label (text) color in tkinter
- Convert Float to String in Python
- Fix: fatal error: No such file or directory compilation terminated
- Python: Access index/counter of a for loop iteration
- Import Other Python Files Examples
- How to install Anaconda on Mac (M1/M2 Mac)
- Python Regular Expression to Find All Matches in List
- How to Read a binary File with Python
- How to disable warnings while Python file execution
- Know current Python Version
More Posts:
- How to Clear All Cells Output in Jupyter Notebook - Python
- How to Convert Python String to DateTime Object - Python
- How to know if someone has read your WhatsApp message - WhatsApp
- How to turn off Facebook autoplay videos on timeline - Facebook
- Copy file from one directory to other in Php - PHP
- Java JDBC: Insert Java 8 LocalDate and Time using PreparedStatement - Java
- Fix Git: Warning: could not find UI helper GitHub.UI on Windows - Git
- Read file from Windows CMD (Command Line) - Windows