python-CSD-kursu/python-temel/scope.4.py

9 lines
134 B
Python
Raw Normal View History

2023-05-29 15:34:45 +00:00
x = 100
def foo():
x = 200
print(x) # yerel 200 çıkar
foo()
print(x) # global 100 çıkar