8 lines
65 B
Python
8 lines
65 B
Python
|
|
|
|
def square(x):
|
|
return x** 2
|
|
|
|
sq5 = square(5)
|
|
print(f'{sq5}')
|