标签:loading 技术 load ini receive col 测试文件 __init__ ESS
1 新建 python Package : mess 文件夹,自动生成空的 __init__.py ,创建send_mess ,receive_mess 两个测试文件,
__init__.py 如下:
from . import receive_mess
from . import send_mess
2 两个测试文件代码如下:
"""send_mess.py """
def send(txt):
print(txt)
"""receive_mess.py """
def receive():
return "aaaaaaaaa"
3 测试
标签:loading 技术 load ini receive col 测试文件 __init__ ESS
原文地址:https://www.cnblogs.com/abel2020/p/13107776.html