美文网首页
python基础-模块导入

python基础-模块导入

作者: ___Kevin | 来源:发表于2018-02-26 10:26 被阅读0次

    导入自定义模块

    方式一

    import sendmsg

    import recivemsg

    sendmsg.doSend()

    recivemsg.doRecive()

    方式二

    from sendmsg import *

    from recivemsg import *

    doSend()

    doRecive()

    方式三

    from sendmsg import doSend,test1,test2
    from recivemsg import doRecive,test1

    test1()
    test2()
    doSend()
    doRecive()

    相关文章

      网友评论

          本文标题:python基础-模块导入

          本文链接:https://www.haomeiwen.com/subject/gnjexftx.html