This commit is contained in:
Mert Gör 🇹🇷 2023-05-29 18:28:05 +03:00
parent 1d5f988efc
commit f39574da28
No known key found for this signature in database
GPG key ID: 2100A876D55B39B9

10
python-temel/scope.3.py Normal file
View file

@ -0,0 +1,10 @@
def foo():
x = 10
print(x)
def bar():
x = 20
print(x)
foo()
bar()