2018-05-06 02:25:16 +08:00
|
|
|
import sys
|
2021-07-13 14:52:26 +08:00
|
|
|
|
2018-05-06 02:25:16 +08:00
|
|
|
sys.path.insert(0, './Release')
|
|
|
|
|
|
|
|
import pydext
|
|
|
|
|
|
|
|
print(pydext)
|
|
|
|
print(dir(pydext))
|
|
|
|
|
|
|
|
print(pydext.__author__)
|
|
|
|
print(pydext.__mail__)
|
|
|
|
|
|
|
|
print(pydext.hello())
|
|
|
|
|
|
|
|
print(pydext.hello2('Irony'))
|
|
|
|
|
|
|
|
print(pydext.sum(1, 5))
|
|
|
|
|
|
|
|
# 结果变负数
|
|
|
|
print(pydext.sum(1, 5, minus=True))
|