美文网首页
Python模块导入搜索路径

Python模块导入搜索路径

作者: Tmac1860 | 来源:发表于2016-12-27 14:02 被阅读0次

    在python当中使用import module时,解释器会按照以下顺序去查找被导入的模块。

    1.built-in 模块

    2.sys.path列表中包含的目录

    (1).当前目录

       (2).PYTHONPATH

      (3).the installation-dependent default.(暂时不明白这是什么?)

    相关文章

      网友评论

          本文标题:Python模块导入搜索路径

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