python-CSD-kursu/python-temel/global.scope.2.py

10 lines
102 B
Python

x = 10
def foo():
#print(x)
#global x # error
x = 20
print(x)
foo()