Local variable referenced before assignment in Python
The “local variable referenced before assignment” error occurs in Python when you try to use a local variable before it has been assigned a value.
This error typically arises in situations where you declare a variable within a function but then try to access or modify it before actually assigning a value to it.
Here’s an example to illustrate this error:
In this example, you would encounter the “local variable ‘x’ referenced before assignment” error because you’re trying to print the value of x before it has been assigned a value. To fix this, you should assign a value to x before attempting to access it:
In the corrected version, the local variable x is assigned a value before it’s used, preventing the error.
Keep in mind that Python treats variables inside functions as local unless explicitly stated otherwise using the global keyword (for global variables) or the nonlocal keyword (for variables in nested functions).
If you encounter this error and you’re sure that the variable should have been assigned a value before its use, double-check your code for any logical errors or typos that might be causing the variable to not be assigned properly.

Using the global keyword
If you have a global variable named letter and you try to modify it inside a function without declaring it as global, you will get error.
This is because Python assumes that any variable that is assigned a value inside a function is a local variable, unless you explicitly tell it otherwise.
To fix this error, you can use the global keyword to indicate that you want to use the global variable:
Using nonlocal keyword
The nonlocal keyword is used to work with variables inside nested functions, where the variable should not belong to the inner function. It allows you to modify the value of a non-local variable in the outer scope.
For example, if you have a function outer that defines a variable x , and another function inner inside outer that tries to change the value of x , you need to use the nonlocal keyword to tell Python that you are referring to the x defined in outer , not a new local variable in inner .
Here is an example of how to use the nonlocal keyword:
If you don’t use the nonlocal keyword, Python will create a new local variable x in inner , and the value of x in outer will not be changed:
Local variable referenced before assignment in Python

Last updated: Feb 17, 2023 Reading time · 4 min

# Local variable referenced before assignment in Python
The Python "UnboundLocalError: Local variable referenced before assignment" occurs when we reference a local variable before assigning a value to it in a function.
To solve the error, mark the variable as global in the function definition, e.g. global my_var .

Here is an example of how the error occurs.
We assign a value to the name variable in the function.
# Mark the variable as global to solve the error
To solve the error, mark the variable as global in your function definition.

If a variable is assigned a value in a function's body, it is a local variable unless explicitly declared as global .
# Local variables shadow global ones with the same name
You could reference the global name variable from inside the function but if you assign a value to the variable in the function's body, the local variable shadows the global one.

Accessing the name variable in the function is perfectly fine.
On the other hand, variables declared in a function cannot be accessed from the global scope.

The name variable is declared in the function, so trying to access it from outside causes an error.
Make sure you don't try to access the variable before using the global keyword, otherwise, you'd get the SyntaxError: name 'X' is used prior to global declaration error.
# Returning a value from the function instead
An alternative solution to using the global keyword is to return a value from the function and use the value to reassign the global variable.

We simply return the value that we eventually use to assign to the name global variable.
# Passing the global variable as an argument to the function
You should also consider passing the global variable as an argument to the function.

We passed the name global variable as an argument to the function.
If we assign a value to a variable in a function, the variable is assumed to be local unless explicitly declared as global .
# Assigning a value to a local variable from an outer scope
If you have a nested function and are trying to assign a value to the local variables from the outer function, use the nonlocal keyword.

The nonlocal keyword allows us to work with the local variables of enclosing functions.
Had we not used the nonlocal statement, the call to the print() function would have returned an empty string.

Printing the message variable on the last line of the function shows an empty string because the inner() function has its own scope.
Changing the value of the variable in the inner scope is not possible unless we use the nonlocal keyword.
Instead, the message variable in the inner function simply shadows the variable with the same name from the outer scope.
# Discussion
As shown in this section of the documentation, when you assign a value to a variable inside a function, the variable:
- Becomes local to the scope.
- Shadows any variables from the outer scope that have the same name.
The last line in the example function assigns a value to the name variable, marking it as a local variable and shadowing the name variable from the outer scope.
At the time the print(name) line runs, the name variable is not yet initialized, which causes the error.
The most intuitive way to solve the error is to use the global keyword.
The global keyword is used to indicate to Python that we are actually modifying the value of the name variable from the outer scope.
- If a variable is only referenced inside a function, it is implicitly global.
- If a variable is assigned a value inside a function's body, it is assumed to be local, unless explicitly marked as global .
If you want to read more about why this error occurs, check out [this section] ( this section ) of the docs.
# Additional Resources
You can learn more about the related topics by checking out the following tutorials:
- SyntaxError: name 'X' is used prior to global declaration

Borislav Hadzhiev
Web Developer

Copyright © 2023 Borislav Hadzhiev
How to Fix Local Variable Referenced Before Assignment Error in Python

In Python , when you try to reference a variable that hasn't yet been given a value (assigned), it will throw an error.
That error will look like this:
In this post, we'll see examples of what causes this and how to fix it.
Fixing local variable referenced before assignment error
Let's begin by looking at an example of this error:
If you run this code, you'll get
The issue is that in this line:
We are defining a local variable called value and then trying to use it before it has been assigned a value, instead of using the variable that we defined in the first line.
If we want to refer the variable that was defined in the first line, we can make use of the global keyword.
The global keyword is used to refer to a variable that is defined outside of a function.
Let's look at how using global can fix our issue here:
Global variables have global scope, so you can referenced them anywhere in your code, thus avoiding the error.
If you run this code, you'll get this output:
In this post, we learned at how to avoid the local variable referenced before assignment error in Python.
The error stems from trying to refer to a variable without an assigned value, so either make use of a global variable using the global keyword, or assign the variable a value before using it.
Thanks for reading!
If you want to learn about web development , founding a start-up , bootstrapping a SaaS , and more, follow me on X ! You can also join the conversation over at our official Discord !
Leave us a message!

Getting Started with Solid

Best Visual Studio Code Extensions for 2022

How to build a Discord bot using TypeScript

How to deploy a PHP app using Docker

Getting Started with Deno

How to deploy a Node app using Docker

Getting Started with Sass

How to Scrape the Web using Node.js and Puppeteer

Getting Started with Handlebars.js

Build a Real-Time Chat App with Node, Express, and Socket.io

Learn how to build a Slack Bot using Node.js


Creating a Twitter bot with Node.js

UnboundLocalError: Local Variable Referenced Before Assignment
Updated Feb 09, 2023
The “local variable referenced before assignment” error occurs when you give reference of a local variable without assigning any value.

Explanation:
In the above example, we have given the value of variable “v1” in two places.
- Outside the function “myfunction()” .
- And at the end of the function “myfunction()” .
If we assign a value of a variable in the function it becomes local variable to that function, but in the above example we have assigned the value to “v1” variable at the end of the function and we are referring this variable before assigning.
And the variable “v1” which we have assigned at the beginning of the code block is not declared as a global variable.
To avoid an error like “UnboundLocalError: local variable referenced before assignment” to occur, we have to:
- Declare GLOBAL variable
- Pass parameters with the function
Declare Global Variable
Code example with global variable:
As we know if we declare any variable as global then its scope becomes global.
Pass function with Parameters
Code example passing parameters with function:
In the above example, as you can see, we are not using a global variable but passing the value of variable “v1” as a parameter with the function “myfunction()”.
Example 2.1
In the "example2 ", we have called a function “dayweek()” with parameter value “10” which gives the error but the same function with value “1” which runs properly in “example 2.1” and returns the output as “Weekday”.
Because in the above function we are assigning the value to variable “wd” if the value of variable " day " is the range from (0 to 7) . If the value of variable " day " greater than "7" or lower then " 0" we are not assigning any value to variable " wd " That's why, whenever the parameter is greater than 7 or less than 0, python compiler throws the error “ UnboundLocalError: local variable 'wd' referenced before assignment ”
To avoid such type of error you need assign the function variable which lies within the range or we need to assign some value like " Invalid Value " to variable " wd " if the value of variable " day " is not in range from ( 0 to 7 )
Correct Example with Exception
- Python Online Compiler
- TypeError: 'int' object is not subscriptable
- pip is not recognized
- Python lowercase
- Python map()
- Python String find
- Invalid literal for int() with base 10 in Python
- Top Online Python Compiler
- Python String Concatenation
- Python Pass Statement
- Python New 3.6 Features
- Python String Contains
- Python eval
- Python Print Without Newline
- Ord Function in Python
- Python Reverse String
- Attribute Error Python
- Python slice() function
- Python Sort Dictionary by Key or Value
- Compare Two Lists in Python
- Learn Python Programming
- Python Training Tutorials for Beginners
- Square Root in Python
- Addition of two numbers in Python
- Null Object in Python
- Python vs PHP
- Python Comment
- Python Min()
- Python Factorial
- Python Continue Statement
- Armstrong Number in Python
- Python Uppercase
- Python String Replace
- Python Max() Function
- Polymorphism in Python
- Inheritance in Python
- Python : end parameter in print()
- Python Enumerate
- Python input()
- Python zip()
- Python Range
- Install Opencv Python PIP Windows
- Python String Title() Method
- String Index Out of Range Python
- Id() function in Python
- Python Split()
- Reverse Words in a String Python
- Only Size-1 Arrays Can be Converted to Python Scalars
- Area of Circle in Python
- Bubble Sort in Python
- Python Combine Lists
- Convert List to String Python
- Python list append and extend
- indentationerror: unindent does not match any outer indentation level in Python
- Remove Punctuation Python
- Python Infinity
- Python KeyError
- Python Return Outside Function
- Pangram Program in Python
[SOLVED] Local Variable Referenced Before Assignment

Python treats variables referenced only inside a function as global variables. Any variable assigned to a function’s body is assumed to be a local variable unless explicitly declared as global.
Why Does This Error Occur?
Unboundlocalerror: local variable referenced before assignment occurs when a variable is used before its created. Python does not have the concept of variable declarations. Hence it searches for the variable whenever used. When not found, it throws the error.
Before we hop into the solutions, let’s have a look at what is the global and local variables.
Local Variable Declarations vs. Global Variable Declarations

Local Variable Referenced Before Assignment Error with Explanation
Try these examples yourself using our Online Compiler.
Let’s look at the following function:

Explanation
The variable myVar has been assigned a value twice. Once before the declaration of myFunction and within myFunction itself.
Using Global Variables
Passing the variable as global allows the function to recognize the variable outside the function.
Create Functions that Take in Parameters
Instead of initializing myVar as a global or local variable, it can be passed to the function as a parameter. This removes the need to create a variable in memory.
UnboundLocalError: local variable ‘DISTRO_NAME’
This error may occur when trying to launch the Anaconda Navigator in Linux Systems.
Upon launching Anaconda Navigator, the opening screen freezes and doesn’t proceed to load.
Try and update your Anaconda Navigator with the following command.
If solution one doesn’t work, you have to edit a file located at
After finding and opening the Python file, make the following changes:
In the function on line 159, simply add the line:
DISTRO_NAME = None
Save the file and re-launch Anaconda Navigator.
DJANGO – Local Variable Referenced Before Assignment [Form]
The program takes information from a form filled out by a user. Accordingly, an email is sent using the information.
Upon running you get the following error:
We have created a class myForm that creates instances of Django forms. It extracts the user’s name, email, and message to be sent.
A function GetContact is created to use the information from the Django form and produce an email. It takes one request parameter. Prior to sending the email, the function verifies the validity of the form. Upon True , .get() function is passed to fetch the name, email, and message. Finally, the email sent via the send_mail function
Why does the error occur?
We are initializing form under the if request.method == “POST” condition statement. Using the GET request, our variable form doesn’t get defined.
Local variable Referenced before assignment but it is global
This is a common error that happens when we don’t provide a value to a variable and reference it. This can happen with local variables. Global variables can’t be assigned.
This error message is raised when a variable is referenced before it has been assigned a value within the local scope of a function, even though it is a global variable.
Here’s an example to help illustrate the problem:
In this example, x is a global variable that is defined outside of the function my_func(). However, when we try to print the value of x inside the function, we get a UnboundLocalError with the message “local variable ‘x’ referenced before assignment”.
This is because the += operator implicitly creates a local variable within the function’s scope, which shadows the global variable of the same name. Since we’re trying to access the value of x before it’s been assigned a value within the local scope, the interpreter raises an error.
To fix this, you can use the global keyword to explicitly refer to the global variable within the function’s scope:
However, in the above example, the global keyword tells Python that we want to modify the value of the global variable x, rather than creating a new local variable. This allows us to access and modify the global variable within the function’s scope, without causing any errors.
Local variable ‘version’ referenced before assignment ubuntu-drivers
This error occurs with Ubuntu version drivers. To solve this error, you can re-specify the version information and give a split as 2 –
Here, p_name means package name.
With the help of the threading module, you can avoid using global variables in multi-threading. Make sure you lock and release your threads correctly to avoid the race condition.
When a variable that is created locally is called before assigning, it results in Unbound Local Error in Python. The interpreter can’t track the variable.
Therefore, we have examined the local variable referenced before the assignment Exception in Python. The differences between a local and global variable declaration have been explained, and multiple solutions regarding the issue have been provided.
Trending Python Articles

Local variable referenced before assignment in Python
In Python, while working with functions, you can encounter various types of errors. A common error when working with the functions is “ Local variable referenced before assignment ”. The stated error occurs when a local variable is referenced before being assigned any value.
This write-up will provide the possible reasons and the appropriate solutions to the error “Local variable referenced before assignment” with practical examples. The following aspects are discussed in this write-up in detail:
Reason: Reference a Local Variable
Solution 1: mark the variable globally, solution 2: using function parameter value, solution 3: using nonlocal keyword.
The main reason for the “ local variable referenced before assignment ” error in Python is using a variable that does not have local scope. This also means referencing a local variable without assigning it a value in a function.
The variable initialized inside the function will only be accessed inside the function, and these variables are known as local variables. To use variables in the entire program, variables must be initialized globally. The below example illustrates how the “ UnboundLocalError ” occurs in Python.

In the above snippet, the “ Student ” variable is not marked as global, so when it is accessed inside the function, the Python interpreter returns an error.
Note: We can access the outer variable inside the function, but when the new value is assigned to a variable, the “UnboundLocalError” appears on the screen.
To solve this error, we must mark the “ Student ” variable as a global variable using the keyword “ global ” inside the function.
Within the function, we can assign a new value to the student variable without any error. Let’s have a look at the below snippet for a detailed understanding:
In the above code, the local variable is marked as a “ global ” variable inside the function. We can easily reference the variable before assigning the variable in the program.

The above snippet proves that the global keyword resolves the “unboundLocalError”.
Passing a value as an argument to the function will also resolve the stated error. The function accepts the variable as an argument and uses the argument value inside the function. Let’s have a look at the given below code block for a better understanding:
In the above code, the variable is referenced before assigning the value inside the user-defined function. The program executes successfully without any errors because the variable is passed as a parameter value of the function.

The above output shows the value of the function when the function is accessed in the program without any “ Local Variable referenced ” error.
The “ nonlocal ” keyword is utilized in the program to assign a new value to a local variable of function in the nested function. Here is an example of code:
In the above code, the keyword “ nonlocal ” is used to mark the local variable of the outer function as nonlocal. After making the variable nonlocal, we can reference it before assigning a value without any error.

The above output shows the value of the inner function without any “ local variable referenced ” error in a program.
The “ Local variable referenced before assignment ” appears in Python due to assigning a value to a variable that does not have a local scope. To fix this error, the global keyword, return statement, and nonlocal nested function is used in Python script. The global keywords are used with variables to make it able to access inside and outside the function. The return statement is also used to return the variable’s new value back to function and display the result on the screen. This Python guide presented a detailed overview of the reason and solutions for the error “Local variable referenced before assignment” in Python.

Newbie issue; local variable referenced before assignment
Hello everybody!
I have only been working with python for about 4 days now, so i know my skillset is “somewhat” lackluster, but i fail to grasp what im doing wrong here…
I have a raspbery pico running a version of something called circuitpython.
I have 2 files; main.py and myDisplay.py.
some pseudo-code: (big chunks of code is missing to try to keep the “pseudo”-code as short as possible, but i think my error should be here somewhere…)
The error im getting is: Traceback (most recent call last): File “”, line 15, in File “myDisplay.py”, line 61, in doButtons NameError: local variable referenced before assignment
The module error line number corresponds with the function call for the doButtons function The doButtons line number corresponds with the first time i use the BackLight_val variable inside a function.
I have been working with C for the past deckade (Arduino), so this feels like a namespace issue, but my logic dictates that the variable name is already “global” (inside that particular “module” named myDisplay"), since its declared before the function.
Ive been trying to get around this issue with no success, the rest of my program does work fine, but it crashes when i try to use a button to modify the backlight intensity.
The rule is that if you assign to a name in a function, the name is assumed to be local to that function unless you say otherwise with global or nonlocal .
In myDisplay.py, you’re assigning to BackLight_Val at the module level.
Also, in that same module, you’re assigning to BackLight_Val in the function doButtons , but, in doing so, Python is assuming that that name is local to the function. It’s not the same variable as the one that exists at the module level. You have 2 variables called BackLight_Val , one in the function’s namespace and another in the module’s namespace.
The solution is to tell Python that the local one is the same as the global one by adding the line:
in the function.

The python namespace works quite differently from what im used to (C), so i really appreciate that you took the time to explain it.
Explore your training options in 10 minutes Get Started
- Graduate Stories
- Partner Spotlights
- Bootcamp Prep
- Bootcamp Admissions
- University Bootcamps
- Software Engineering
- Web Development
- Data Science
- Tech Guides
- Tech Resources
- Career Advice
- Online Learning
- Internships
- Apprenticeships
- Tech Salaries
- Associate Degree
- Bachelor's Degree
- Master's Degree
- University Admissions
- Best Schools
- Certifications
- Bootcamp Financing
- Higher Ed Financing
- Scholarships
- Financial Aid
- Best Coding Bootcamps
- Best Online Bootcamps
- Best Web Design Bootcamps
- Best Data Science Bootcamps
- Best Technology Sales Bootcamps
- Best Data Analytics Bootcamps
- Best Cybersecurity Bootcamps
- Best Digital Marketing Bootcamps
- Los Angeles
- San Francisco
- Browse All Locations
- Digital Marketing
- Machine Learning
- See All Subjects
- Bootcamps 101
- Full-Stack Development
- Career Changes
- View all Career Discussions
- Mobile App Development
- Cybersecurity
- Product Management
- UX/UI Design
- What is a Coding Bootcamp?
- Are Coding Bootcamps Worth It?
- How to Choose a Coding Bootcamp
- Best Online Coding Bootcamps and Courses
- Best Free Bootcamps and Coding Training
- Coding Bootcamp vs. Community College
- Coding Bootcamp vs. Self-Learning
- Bootcamps vs. Certifications: Compared
- What Is a Coding Bootcamp Job Guarantee?
- How to Pay for Coding Bootcamp
- Ultimate Guide to Coding Bootcamp Loans
- Best Coding Bootcamp Scholarships and Grants
- Education Stipends for Coding Bootcamps
- Get Your Coding Bootcamp Sponsored by Your Employer
- GI Bill and Coding Bootcamps
- Tech Intevriews
- Our Enterprise Solution
- Connect With Us
- Publication
- Reskill America
- Partner With Us

- Resource Center
- Coding Tools
- Bachelor’s Degree
- Master’s Degree
Python local variable referenced before assignment Solution
When you start introducing functions into your code, you’re bound to encounter an UnboundLocalError at some point. This error is raised when you try to use a variable before it has been assigned in the local context .
In this guide, we talk about what this error means and why it is raised. We walk through an example of this error in action to help you understand how you can solve it.
Find your bootcamp match
What is unboundlocalerror: local variable referenced before assignment.
Trying to assign a value to a variable that does not have local scope can result in this error:
Python has a simple rule to determine the scope of a variable. If a variable is assigned in a function , that variable is local. This is because it is assumed that when you define a variable inside a function you only need to access it inside that function.
There are two variable scopes in Python: local and global. Global variables are accessible throughout an entire program; local variables are only accessible within the function in which they are originally defined.
Let’s take a look at how to solve this error.
An Example Scenario
We’re going to write a program that calculates the grade a student has earned in class.
We start by declaring two variables:
These variables store the numerical and letter grades a student has earned, respectively. By default, the value of “letter” is “F”. Next, we write a function that calculates a student’s letter grade based on their numerical grade using an “if” statement :
Finally, we call our function:
This line of code prints out the value returned by the calculate_grade() function to the console. We pass through one parameter into our function: numerical. This is the numerical value of the grade a student has earned.
Let’s run our code and see what happens:
An error has been raised.
The Solution
Our code returns an error because we reference “letter” before we assign it.
We have set the value of “numerical” to 42. Our if statement does not set a value for any grade over 50. This means that when we call our calculate_grade() function, our return statement does not know the value to which we are referring.
We do define “letter” at the start of our program. However, we define it in the global context. Python treats “return letter” as trying to return a local variable called “letter”, not a global variable.
We solve this problem in two ways. First, we can add an else statement to our code. This ensures we declare “letter” before we try to return it:
Let’s try to run our code again:
Our code successfully prints out the student’s grade.
If you are using an “if” statement where you declare a variable, you should make sure there is an “else” statement in place. This will make sure that even if none of your if statements evaluate to True, you can still set a value for the variable with which you are going to work.
Alternatively, we could use the “global” keyword to make our global keyword available in the local context in our calculate_grade() function. However, this approach is likely to lead to more confusing code and other issues. In general, variables should not be declared using “global” unless absolutely necessary . Your first, and main, port of call should always be to make sure that a variable is correctly defined.
In the example above, for instance, we did not check that the variable “letter” was defined in all use cases.
That’s it! We have fixed the local variable error in our code.
The UnboundLocalError: local variable referenced before assignment error is raised when you try to assign a value to a local variable before it has been declared. You can solve this error by ensuring that a local variable is declared before you assign it a value.
Now you’re ready to solve UnboundLocalError Python errors like a professional developer !
About us: Career Karma is a platform designed to help job seekers find, research, and connect with job training programs to advance their careers. Learn about the CK publication .
What's Next?

Get matched with top bootcamps
Ask a question to our community, take our careers quiz.

Leave a Reply Cancel reply
Your email address will not be published. Required fields are marked *


IMAGES
VIDEO
COMMENTS
Qualitative variables are those with no natural or logical order. While scientists often assign a number to each, these numbers are not meaningful in any way. Examples of qualitative variables include things such as color, shape or pattern.
A function is a relationship in math between two variables, often x and y, and for every value of x there is exactly one value of y. The x value is referred to as the independent variable and the y as the dependent variable.
A rheostat is a variable resistor that is used to alter the amount of voltage or current in a circuit, according to HowStuffWorks. Rheostats make possible functions of electronics such as light dimmers and volume dials.
Traceback (most recent call last): File «main.py», line 6, in sum() File «main.py», line 3, in sum x = x + 5 ❌ UnboundLocalError: local
When Python parses the body of a function definition and encounters an assignment such as feed = ... Python interprets feed as a local
The “local variable referenced before assignment” error occurs in Python when you try to use a local variable before it has been assigned a
To solve the error, mark the variable as global in the function definition, e.g. global my_var . unboundlocalerror local variable name
In this post, we learned at how to avoid the local variable referenced before assignment error in Python. The error stems from trying to refer
The “local variable referenced before assignment” error occurs when you give reference of a local variable without assigning any value. Example:
Unboundlocalerror: local variable referenced before assignment occurs when a variable is used before its created. Python does not have the
The main reason for the “local variable referenced before assignment” error in Python is using a variable that does not have local scope. This also means
NameError: local variable referenced before assignment. The module error line number corresponds with the function call for the doButtons
The UnboundLocalError: local variable referenced before assignment error is raised when you try to assign a value to a local variable before it
Значит ваши условия не выполняются и переменная ebytexts не создается. А ошибка local variable referenced before assignment означает