6 lines
87 B
Python
6 lines
87 B
Python
# func_from.py
|
|
from lib.funcdef import square, cube
|
|
|
|
print(square(10))
|
|
print(cube(10))
|