Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python local variable referenced before assignment

variable = "Hello"
def function():
  global variable
  print(variable)
function()
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #python #local #variable #referenced #assignment
ADD COMMENT
Topic
Name
1+1 =