编程语言
首页 > 编程语言> > python--包

python--包

作者:互联网

receive_message代码如下:

def receive():
    return "这是来自 100xx 的短信"

send_message代码如下:

def send(text):
    print("正在发送 %s..." % text)

__init__代码如下:

from . import send_message
from . import receive_message
import pac
pac.send_message.send("hello")
txt = pac.receive_message.receive()
print(txt)
正在发送 hello...
这是来自 100xx 的短信

标签:__,python,send,--,pac,import,message,receive
来源: https://blog.csdn.net/weixin_46361294/article/details/122850975