What is UnboundLocalError in Python?
This error occurs when you try to use a local variable in a function before assigning a value to it.
⚠️ Error Example:
pythonCopy codex = 5
def my_func():
print(x) # Trying to access x
x = 10 # Local assignment
my_func()
Output:
Unboun...
dev-new-insights.hashnode.dev2 min read