python3 _from...import...与import ...区别
博士僧小星 人气:0前言
【以下说明以tkinter模块为例进行说明】
【下图为安装后在python解释器路径下lib(库)文件夹下的tkinter文件夹下的内容】
1.import ...
【语法】import tkinter
【说明】
import引入的是包中根目录下__init__.py中的全部内容,包括其中的类、类内部的公有属性、类内部的公有方法、方法等内容.(该种方式导入包的本质就是执行__init__.py文件)
(该种方式导入模块的本质是将模块解释执行一遍,并赋值给tkinter: module_name = "module_name.py all code")
===> import module_name ---> module_nmae.py ---> module_name.py的位置 ---> sys.path(本质是一个列表)
2.from ... import ...
【语法】from ... import ...
【说明】
(from ... import ...引入的是在包中根目录下__init__.py和某个文件的内容)但是,我们知道,导入包是没有意义的,最终的目的是导入包下面的模块。(该种方式导入包)
(该种方式当如模块的本质是讲module_name.py文件掰开,把想要的部分放入当前文件执行一遍。)
3.引用也有区别
下边代码块中所展示的区别,主要是受到上边部分【说明】中所列出的原因的影响
# test.py # coding: utf-8 # author: admain_maxin class Test(object): def add(self, num=1): print(num+1)
# test1.py # coding: utf-8 # author: admain_maxin import test test.Test().add() from test import Test Test().add()
4.引用优化
例如:当我们需要引用某个模块module_name.py中的test()函数时,如果采用 import test方式,则其首先需要在sys.path列表中所列出的目录下查找模块module_name.py,若多个函数均进行这个操作,则会耗费大量的时间(问题就出在重复的找module_name.py模块)。这是可直接将模块中的函数导入:
from module_name import test # def test(): # print("this is module_name.py test") def test1(): test() def test2(): test() def test3(): test()
总结
加载全部内容