Handling NameError Exception in Python
Prerequisites: Python Exception Handling
There are several standard exceptions in Python and NameError is one among them. NameError is raised when the identifier being accessed is not defined in the local or global scope. General causes for NameError being raised are :
1. Misspelled built-in functions:
In the below example code, the print statement is misspelled hence NameError will be raised.
geek = input()
printf(geek)
Output :
NameError: name 'printf' is not defined2. Using undefined variables:
When the below program is executed, NameError will be raised as the variable geek is never defined.
geeky = input()
print(geek)
Output :
NameError: name 'geek' is not defined3. Defining variable after usage:
In the following example, even though the variable geek is defined in the program, it is defined after its usage. Since Python interprets the code from top to bottom, this will raise NameError
print(geek)
geek = "GeeksforGeeks"
Output :
NameError: name 'geek' is not defined4. Incorrect usage of scope:
In the below example program, the variable geek is defined within the local scope of the assign function. Hence, it cannot be accessed globally. This raises NameError.
def assign():
geek = "GeeksforGeeks"
assign()
print(geek)
Output :
NameError: name 'geek' is not definedHandling NameError
To specifically handle NameError in Python, you need to mention it in the except statement. In the following example code, if only the NameError is raised in the try block then an error message will be printed on the console.
def geek_message():
try:
geek = "GeeksforGeeks"
return geeksforgeeks
except NameError:
return "NameError occurred. Some variable isn't defined."
print(geek_message())
Output :
NameError occurred. Some variable isn't defined.