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

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

@ -0,0 +1,8 @@
def foo():
i = 0
while i < 10:
x = 10
i += 1
print(x) # geçerli
foo()