This commit is contained in:
Mert Gör 🇹🇷 2023-06-10 12:56:03 +03:00
parent 87b25fc45c
commit 647140044d
No known key found for this signature in database
GPG Key ID: 2100A876D55B39B9

14
python-temel/locals.py Normal file
View File

@ -0,0 +1,14 @@
def foo():
y = 20
def bar():
z = 30
d = locals()
print(d)
d = locals()
print(d)
bar()
foo()