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
1 changed files with 5 additions and 0 deletions

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

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