python-CSD-kursu/python-temel/yeni.yerel.py

8 lines
100 B
Python

x = 10
def foo():
x = 20 # geçerli, yeni bir yerel x
print(x)
foo()