Concrete Exceptions in Python
Last Updated :
09 Apr, 2024
In Python, exceptions are a way of handling errors that occur during the execution of the program. When an error occurs Python raises an exception that can be caught and handled by the programmer to prevent the program from crashing. In this article, we will see about concrete exceptions in Python in detail with the help of examples.
Concrete Exceptions in Python
Below are some examples of common concrete exceptions in Python:
- Exception NameError
- Exception TypeError
- Exception IndexError
- Exception IndentationError
- Exception ZeroDivisionError
- Exception FileNotFoundError
Exception NameError
A NameError occurs when a name used in code is not found in local or global scope. This can happen when trying to the access a variable that has not been defined. In this example, the variable x is not defined before it is used in print statement resulting in the NameError.
Python3
# Example of NameError
print(x)
Output:
Hangup (SIGHUP)
Traceback (most recent call last):
File "Solution.py", line 2, in <module>
print(x)
NameError: name 'x' is not defined
Exception TypeError
A TypeError occurs when an operation or function is applied to an object of the inappropriate type. This can happen when performing the unsupported operations on the different data types. In this example, the + operator is used to the concatenate a string (x) and an integer (y) resulting in the TypeError.
Python3
# Example of TypeError
x = "Hello"
y = 5
result = x + y
Output:
Hangup (SIGHUP)
Traceback (most recent call last):
File "Solution.py", line 4, in <module>
result = x + y
TypeError: cannot concatenate 'str' and 'int' objects
Exception IndexError
An IndexError occurs when trying to the access an index that is out of range for given sequence. In this example, the index 3 is out of range for list my_list, which only has elements at indices 0, 1 and 2.
Python3
# Example of IndexError
my_list = [1, 2, 3]
print(my_list[3])
Output:
Hangup (SIGHUP)
Traceback (most recent call last):
File "Solution.py", line 3, in <module>
print(my_list[3])
IndexError: list index out of range
Exception IndentationError
An Indentation Error occurs in Python when incorrect indentation is used. Python relies on proper indentation to structure code. In the given example, an Indentation Error occurs because the code following the for loop is not properly indented, violating Python's indentation rules.
Python3
x = 5
for i in range(x):
print(i)
Output
Hangup (SIGHUP)
File "Solution.py", line 3
print(i)
^
IndentationError: expected an indented block
Exception ZeroDivisionError
A ZeroDivisionError occurs when trying to the divide a number by zero. In this example, division by the zero is attempted resulting in the ZeroDivisionError.
Python3
# Example of ZeroDivisionError
result = 10 / 0
Output:
Hangup (SIGHUP)
Traceback (most recent call last):
File "Solution.py", line 2, in <module>
result = 10 / 0
ZeroDivisionError: integer division or modulo by zero
Exception FileNotFoundError
A FileNotFoundError occurs when trying to the access a file that does not exist. In this example, the file "nonexistent_file.txt" does not exist causing a FileNotFoundError when attempting to open it.
Python3
# Example of FileNotFoundError
with open("nonexistent_file.txt", "r") as file:
contents = file.read()
Output:
FileNotFoundError: [Errno 2] No such file or directory: 'nonexistent_file.txt
Similar Reads
Python Built in Functions Python is the most popular programming language created by Guido van Rossum in 1991. It is used for system scripting, software development, and web development (server-side). Web applications can be developed on a server using Python. Workflows can be made with Python and other technologies. Databas
6 min read
Python Functions Python Functions is a block of statements that does a specific task. The idea is to put some commonly or repeatedly done task together and make a function so that instead of writing the same code again and again for different inputs, we can do the function calls to reuse code contained in it over an
9 min read
Python Dictionary Exercise Basic Dictionary ProgramsPython | Sort Python Dictionaries by Key or ValueHandling missing keys in Python dictionariesPython dictionary with keys having multiple inputsPython program to find the sum of all items in a dictionaryPython program to find the size of a DictionaryWays to sort list of dicti
3 min read
Python compile() Function Python is a high-level, general-purpose, and very popular programming language. In this article, we will learn about the Python compile() function. Python compile() Function SyntaxPython compile() function takes source code as input and returns a code object that is ready to be executed and which ca
3 min read
Free Python Course Online [2025] Want to learn Python and finding a course for free to learn Python programming? No need to worry now, Embark on an exciting journey of Python programming with our free Python course- Free Python Programming - Self-Paced, which covers everything from Python fundamentals to advanced. This course is pe
5 min read
Code introspection in Python .numpy-table { font-family: arial, sans-serif; border-collapse: collapse; border: 1px solid #5fb962; width: 100%; } .numpy-table td, th { background-color: #c6ebd9; border: 1px solid #5fb962; text-align: left; padding: 8px; } .numpy-table td:nth-child(odd) { background-color: #c6ebd9; } .numpy-table
4 min read