You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
242 B
19 lines
242 B
# locals referenced before assignment
|
|
|
|
def f1():
|
|
print(x)
|
|
x = 1
|
|
|
|
def f2():
|
|
for i in range(0):
|
|
print(i)
|
|
print(i)
|
|
|
|
def check(f):
|
|
try:
|
|
f()
|
|
except NameError:
|
|
print("NameError")
|
|
|
|
check(f1)
|
|
check(f2)
|
|
|