python-CSD-kursu/python-temel/nonlocal.2.py

11 lines
209 B
Python
Raw Normal View History

2023-06-04 17:17:20 +03:00
def foo():
x = 10
def bar():
def tar():
nonlocal x # foo'daki x
x = 20
tar()
bar()
print(x) # 20
foo()