Answers for "UnboundLocalError: local variable 'r' referenced before assignment"

8

unboundlocalerror local variable referenced before assignment python

"""
This happens when python thinks that your variable is local
(the scope is only within a specific function) and/or that
you have not assigned a value to the variable before in this
specific function (scope).

try:
 - assigning the variable a value within the function
 - Passing the variable to the function using it when calling the function
 - Declaring the variable as global (bad practice)
 
Read more about this error in the source
"""
Posted by: Guest on September-16-2020
1

UnboundLocalError: local variable 'r' referenced before assignment

r = 0
list = ['apple','lime','orange']
def list_list(x):
    for i in x:
        r +=1
        print r
list_list(list)
Posted by: Guest on May-12-2021
0

UnboundLocalError: local variable 'obj' referenced before assignment

UnboundLocalError: local variable 'obj' referenced before assignment
Posted by: Guest on June-03-2021

Code answers related to "UnboundLocalError: local variable 'r' referenced before assignment"

Browse Popular Code Answers by Language