return example 1

This commit is contained in:
Mert Gör 🇹🇷 2023-05-23 05:38:17 +03:00
parent 3e83c02c9a
commit 67d7cdd2c0
No known key found for this signature in database
GPG key ID: 2100A876D55B39B9

5
python-temel/return.py Normal file
View file

@ -0,0 +1,5 @@
def square(a):
return a * a
x = square(5)
print(x)