7 lines
96 B
Python
7 lines
96 B
Python
# func_import.py
|
|
import lib.funcdef
|
|
|
|
|
|
print(lib.funcdef.square(10))
|
|
print(lib.funcdef.cube(10))
|