美文网首页
python 自定义模块的导入

python 自定义模块的导入

作者: 裴general | 来源:发表于2018-08-03 23:42 被阅读0次

    a.py b.py 均在同一个文件夹下面,文件名为test

    a.py

    def add(x, y):
        return x + y
    

    b.py

    from test.a import add
    print(add(1, 2))
    # 返回结果是3
    

    相关文章

      网友评论

          本文标题:python 自定义模块的导入

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