python 各层级目录下的import方法

系统 1565 0

---恢复内容开始---

以前经常使用python2.现在很多东西都切换到了python3,发现很多东西还是存在一些差异化的。跨目录import是常用的一种方法,并且有不同的表现形式,新手很容易搞混。有必要这里做个总结,给大家科普一下:
1 同级目录下的调用:
同级目录下的调用比较简单,一般使用场景是不同类的相互调用。不用考虑路径问题,常用的格式是:from file import * 或者 from file import class/function 等。
下面以一个例子作为说明:
程序结构:
➜ dir_test git:(master) ✗ tree
.
├──  pycache
│   └── test1.cpython-37.pyc
├── dir1
│   └── test3.py
├── test1.py
└── test2.py

代码:

            
              from
            
             test1 
            
              import
            
             *

            
              #
            
            
               the below is also ok
            
            
              
#
            
            
              from test1 import dir_test
            
            
              def
            
            
               test_file2():
    
            
            
              print
            
            (
            
              "
            
            
              this is test file2
            
            
              "
            
            
              )

dir_test()
test_file2()
            
          

 

2 子目录下的调用:
子目录下的函数调用,正常的情况下,需要包含子目录的,常用的格式如下:form dir1.file import * 或者: from dir1 import file等。
下面以一个例子说明:

➜ dir_test git:(master) ✗ tree
.
├──  pycache
│   └── test1.cpython-37.pyc
├── dir1
│   ├──  pycache
│   │   └── test3.cpython-37.pyc
│   └── test3.py
├── test1.py
└── test2.py

代码:

            
              from
            
             test1 
            
              import
            
             *

            
              #
            
            
               the below is also ok
            
            
              
#
            
            
              from test1 import dir_test
            
            
              from
            
             dir1.test3 
            
              import
            
             *


            
              def
            
            
               test_file2():
    
            
            
              print
            
            (
            
              "
            
            
              this is test file2
            
            
              "
            
            
              )

dir_test()
dir1_test()
            
          

 

3 上级目录下的调用:
上级目录调用要比上两种复杂,这里要用到sys函数,首先要在将要调用的文件下面建一个空文件: init .py 然后在调用这个文件的文件里面添加:sys.path.append("…"),才可以调用成功:
下面是一个例子:文件结构:
➜ dir_test git:(master) ✗ tree
.
├──  pycache
│   └── test1.cpython-37.pyc
├── dir1
│   ├──  init .py
│   ├──  pycache
│   │   ├──  init .cpython-37.pyc
│   │   └── test3.cpython-37.pyc
│   └── test3.py
├── dir2
│   └── test4.py
├── test1.py
└── test2.py
代码:

            
              #
            
            
              !python3
            
            
              import
            
            
               sys
sys.path.append(
            
            
              "
            
            
              ..
            
            
              "
            
            
              )

            
            
              from
            
             dir1.test3 
            
              import
            
             *

            
              #
            
            
              import dir1
            
          

更多文章、技术交流、商务合作、联系博主

微信扫码或搜索:z360901061

微信扫一扫加我为好友

QQ号联系: 360901061

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描下面二维码支持博主2元、5元、10元、20元等您想捐的金额吧,狠狠点击下面给点支持吧,站长非常感激您!手机微信长按不能支付解决办法:请将微信支付二维码保存到相册,切换到微信,然后点击微信右上角扫一扫功能,选择支付二维码完成支付。

【本文对您有帮助就好】

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描上面二维码支持博主2元、5元、10元、自定义金额等您想捐的金额吧,站长会非常 感谢您的哦!!!

发表我的评论
最新评论 总共0条评论