python-CSD-kursu/python-temel/foo.bar.nonlocal.py

13 lines
297 B
Python
Raw Normal View History

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