This commit is contained in:
Mert Gör 🇹🇷 2023-05-30 16:12:06 +03:00
parent 528a29f9d1
commit 64c18587e9
No known key found for this signature in database
GPG Key ID: 2100A876D55B39B9

9
python-temel/scope.5.py Normal file
View File

@ -0,0 +1,9 @@
x = 100
def foo():
#print(x) # error
x = 200
print(x)
foo()
print(x)