Python语言中import的使用很简单,直接使用import module_name语句导入即可。这里我主要写一下"import"的本质。
Python官方定义:
Python code in one module gains access to the code in another module by the process of importing it.
1.定义:
2.导入方法
# 导入一个模块 import model_name # 导入多个模块 import module_name1,module_name2 # 导入模块中的指定的属性、方法(不加括号)、类 from moudule_name import moudule_element [as new_name]
方法使用别名时,使用"new_name()"调用函数,文件中可以再定义"module_element()"函数。
3.import本质(路径搜索和搜索路径)
# -*- coding:utf-8 -*- print("This is module_name.py") name = 'Hello' def hello(): print("Hello")
# -*- coding:utf-8 -*- import module_name print("This is module_test01.py") print(type(module_name)) print(module_name)
运行结果:
E:\PythonImport>python module_test01.py
This is module_name.py
This is module_test01.py
<class 'module'>
<module 'module_name' from 'E:\\PythonImport\\module_name.py'>
在导入模块的时候,模块所在文件夹会自动生成一个__pycache__\module_name.cpython-35.pyc文件。
"import module_name" 的本质是将"module_name.py"中的全部代码加载到内存并赋值给与模块同名的变量写在当前文件中,这个变量的类型是'module';<module 'module_name' from 'E:\\PythonImport\\module_name.py'>
# -*- coding:utf-8 -*- from module_name import name print(name)
运行结果;
E:\PythonImport>python module_test02.py
This is module_name.py
Hello
"from module_name import name" 的本质是导入指定的变量或方法到当前文件中。
# -*- coding:utf-8 -*- print("This is package_name.__init__.py")
# -*- coding:utf-8 -*- import package_name print("This is module_test03.py")
运行结果:
E:\PythonImport>python module_test03.py
This is package_name.__init__.py
This is module_test03.py
"import package_name"导入包的本质就是执行该包下的__init__.py文件,在执行文件后,会在"package_name"目录下生成一个"__pycache__ / __init__.cpython-35.pyc" 文件。
# -*- coding:utf-8 -*- print("Hello World")
# -*- coding:utf-8 -*- # __init__.py文件导入"package_name"中的"hello"模块 from . import hello print("This is package_name.__init__.py")
运行结果:
E:\PythonImport>python module_test03.py
Hello World
This is package_name.__init__.py
This is module_test03.py
在模块导入的时候,默认现在当前目录下查找,然后再在系统中查找。系统查找的范围是:sys.path下的所有路径,按顺序查找。
4.导入优化
# -*- coding:utf-8 -*- import module_name def a(): module_name.hello() print("fun a") def b(): module_name.hello() print("fun b") a() b()
运行结果:
E:\PythonImport>python module_test04.py
This is module_name.py
Hello
fun a
Hello
fun b
多个函数需要重复调用同一个模块的同一个方法,每次调用需要重复查找模块。所以可以做以下优化:
# -*- coding:utf-8 -*- from module_name import hello def a(): hello() print("fun a") def b(): hello() print("fun b") a() b()
运行结果:
E:\PythonImport>python module_test04.py
This is module_name.py
Hello
fun a
Hello
fun b
可以使用"from module_name import hello"进行优化,减少了查找的过程。
5.模块的分类
内建模块
可以通过 "dir(__builtins__)" 查看Python中的内建函数
>>> dir(__builtins__) ['ArithmeticError', 'AssertionError', 'AttributeError', 'BaseException', 'BlockingIOError', 'BrokenPipeError', 'BufferError', 'BytesWarning', 'ChildProcessError', 'ConnectionAbortedError', 'ConnectionError', 'ConnectionRefusedError', 'ConnectionResetError', 'DeprecationWarning', 'EOFError', 'Ellipsis', 'EnvironmentError', 'Exception', 'False', 'FileExistsError', 'FileNotFoundError', 'FloatingPointError', 'FutureWarning', 'GeneratorExit', 'IOError', 'ImportError', 'ImportWarning', 'IndentationError', 'IndexError', 'InterruptedError', 'IsADirectoryError', 'KeyError', 'KeyboardInterrupt', 'LookupError', 'MemoryError', 'NameError', 'None', 'NotADirectoryError', 'NotImplemented', 'NotImplementedError', 'OSError', 'OverflowError', 'PendingDeprecationWarning', 'PermissionError', 'ProcessLookupError', 'RecursionError', 'ReferenceError', 'ResourceWarning', 'RuntimeError', 'RuntimeWarning', 'StopAsyncIteration', 'StopIteration', 'SyntaxError', 'SyntaxWarning', 'SystemError', 'SystemExit', 'TabError', 'TimeoutError', 'True', 'TypeError', 'UnboundLocalError', 'UnicodeDecodeError', 'UnicodeEncodeError', 'UnicodeError', 'UnicodeTranslateError', 'UnicodeWarning', 'UserWarning', 'ValueError', 'Warning', 'WindowsError', 'ZeroDivisionError', '_', '__build_class__', '__debug__', '__doc__', '__import__', '__loader__','__name__', '__package__', '__spec__', 'abs', 'all', 'any', 'ascii', 'bin', 'bool', 'bytearray', 'bytes', 'callable', 'chr', 'classmethod', 'compile', 'complex', 'copyright', 'credits', 'delattr', 'dict', 'dir', 'divmod', 'enumerate', 'eval', 'exec', 'exit', 'filter', 'float', 'format', 'frozenset', 'getattr', 'globals', 'hasattr', 'hash', 'help', 'hex', 'id', 'input', 'int', 'isinstance', 'issubclass', 'iter', 'len', 'license', 'list', 'locals', 'map', 'max', 'memoryview', 'min', 'next', 'object', 'oct', 'open', 'ord', 'pow', 'print', 'property', 'quit', 'range', 'repr', 'reversed', 'round','set', 'setattr', 'slice', 'sorted', 'staticmethod', 'str', 'sum', 'super', 'tuple', 'type', 'vars', 'zip']
非内建函数需要使用"import"导入。Python中的模块文件在"安装路径\Python\Python35\Lib"目录下。
第三方模块
通过"pip install "命令安装的模块,以及自己在网站上下载的模块。一般第三方模块在"安装路径\Python\Python35\Lib\site-packages"目录下。
以上就是详解Python中import机制的详细内容,更多关于Python import机制的资料请关注小牛知识库其它相关文章!
本文向大家介绍python之import机制详解,包括了python之import机制详解的使用技巧和注意事项,需要的朋友参考一下 本文详述了Python的import机制,对于理解Python的运行机制很有帮助! 1.标准import: Python中所有加载到内存的模块都放在 sys.modules 。当 import 一个模块时首先会在这个列表中查找是否已经加载了此模块,如果加载了则只是将模
Example Package # example/__init__.py print('Importing example package') # example/submodule.py print('Importing submodule') Module Types # importlib_suffixes.py import importlib.machinery SUFFIXES
本文向大家介绍详解Android中AsyncTask机制,包括了详解Android中AsyncTask机制的使用技巧和注意事项,需要的朋友参考一下 在Android当中,提供了两种方式来解决线程直接的通信问题,一种是通过Handler的机制,还有一种就是今天要详细讲解的 AsyncTask 机制。 AsyncTask
本文向大家介绍ThinkPHP之import方法实例详解,包括了ThinkPHP之import方法实例详解的使用技巧和注意事项,需要的朋友参考一下 import方法是ThinkPHP框架用于类库导入的封装实现,尤其对于项目类库、扩展类库和第三方类库的导入支持,import方法早期的版本可以和java的import方法一样导入目录和通配符导入,后来考虑到性能问题,在后续的版本更新中不断改进和简化了,
本文向大家介绍Python中str.format()详解,包括了Python中str.format()详解的使用技巧和注意事项,需要的朋友参考一下 1. str.format 的引入 在 Python 中,我们可以使用 + 来连接字符串,在简单情况下这种方式能够很好的工作。但是当我们需要进行复杂的字符串连接时,如果依然使用 + 来完成,不仅会使代码变得晦涩难懂,还会让代码变得难以维护,此时这种方式
本文向大家介绍python 全局变量的import机制介绍,包括了python 全局变量的import机制介绍的使用技巧和注意事项,需要的朋友参考一下 先把有问题的代码晒一下: IServer.py IServer_A.py IServer_B.py CreatFactory.py 代码内已经加了调试的部分信息, 运行CreatFactory.py。调用DoWithA失败,提示AttributeE