python-CSD-kursu/python-temel/return.py
2023-05-23 05:38:17 +03:00

5 lines
56 B
Python

def square(a):
return a * a
x = square(5)
print(x)