immutable foo.py

This commit is contained in:
Mert Gör 🇹🇷 2023-06-22 23:12:53 +03:00
parent 318cd0c0ba
commit 30af94a979
No known key found for this signature in database
GPG key ID: 2100A876D55B39B9

7
python-temel/foo.py Normal file
View file

@ -0,0 +1,7 @@
def foo(a):
print(a) # 10
a = 100
x = 10
foo(x)
print(x) # 10