Python模块在使用中的两种导入方法
Python模块的两种导入方法。我们在使用的时候需要不断的学习。其实我们只要是掌握了相关代码的编写在实际应用中两种都有用,你应该知道什么时候使用哪一种方法。
一种方法,import module,你已经在第 2.4 节 “万物皆对象”看过了。另一种方法完成同样的事情,但是它与第一种有着细微但重要的区别。
下面是 from module import 的基本语法:
from UserDict import UserDict
它与你所熟知的 import module 语法很相似,但是有一个重要的区别:UserDict 被直接导入到局部名字空间去了,所以它可以直接使用,而不需要加上模块名的限定。你可以导入独立的项或使用 from module import * 来导入所有东西。
Python 中的 from module import * 像 Perl 中的 use module ;Python 中的 import module 像 Perl 中的 require module 。
Python 中的 from module import * 像 Java 中的 import module.* ;Python 中的 import module 像 Java 中的 import module 。
import module vs. from module import >>> import types>>> types.FunctionType <type 'function' >>>> FunctionType Traceback (innermost last): File " <interactive input>", line 1, in ?NameError: There is no variable named 'FunctionType'>>> from types import FunctionType >>> FunctionType <type 'function'>
types 模块不包含方法,只是表示每种 Python 对象类型的属性。注意这个属性必需用模块名 types 进行限定。FunctionType 本身没有被定义在当前名字空间中;它只存在于 types 的上下文环境中。这个语法从 types 模块中直接将 FunctionType 属性导入到局部名字空间中。现在 FunctionType 可以直接使用,与 types 无关了。
什么时候你应该使用 from module import?