python-CSD-kursu/python-temel/nonlocal.2.py
2023-06-04 17:17:20 +03:00

11 lines
209 B
Python

def foo():
x = 10
def bar():
def tar():
nonlocal x # foo'daki x
x = 20
tar()
bar()
print(x) # 20
foo()