This commit is contained in:
Mert Gör 🇹🇷 2023-05-30 16:52:41 +03:00
parent 78417d762f
commit 0c68fb6443
No known key found for this signature in database
GPG Key ID: 2100A876D55B39B9

8
python-temel/scope.6.py Normal file
View File

@ -0,0 +1,8 @@
def foo():
x = [1, 2, 3, 4, 5]
for i in x:
print(i)
print(i) # geçerli
foo()