- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章Python内置函数——__import__ 的使用方法由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
__import__() 函数用于动态加载类和函数 .
如果一个模块经常变化就可以使用 __import__() 来动态载入.
语法 。
__import__ 语法:
__import__(name[, globals[, locals[, fromlist[, level]]]]) 。
参数说明:
name -- 模块名 。
英文文档:
__import__(name, globals=None, locals=None, fromlist=(), level=0) 。
This function is invoked by the import statement. It can be replaced (by importing the builtins module and assigning to builtins.__import__) in order to change semantics of the import statement, but doing so is strongly discouraged as it is usually simpler to use import hooks (see PEP 302) to attain the same goals and does not cause issues with code which assumes the default import implementation is in use. Direct use of __import__() is also discouraged in favor of importlib.import_module(). 。
The function imports the module name, potentially using the given globals and locals to determine how to interpret the name in a package context. The fromlist gives the names of objects or submodules that should be imported from the module given by name. The standard implementation does not use its locals argument at all, and uses its globals only to determine the package context of the import statement. 。
level specifies whether to use absolute or relative imports. 0 (the default) means only perform absolute imports. Positive values for level indicate the number of parent directories to search relative to the directory of the module calling __import__() (see PEP 328 for the details). 。
When the name variable is of the form package.module, normally, the top-level package (the name up till the first dot) is returned, not the module named by name. However, when a non-empty fromlist argument is given, the module named by name is returned. 。
说明:
1. 函数功能用于动态的导入模块,主要用于反射或者延迟加载模块.
2. __import__(module)相当于import module 。
先定义两个模块mian.py和index.py,两个文件在同一目录下:
1
2
3
4
5
6
7
8
|
#index.py
print
(
'index'
)
def
sayHello():
print
(
'hello index'
)
def
sayHelloZhCn():
print
(
'你好 index'
)
|
1
2
3
4
5
6
7
|
#mian.py
print
(
'main'
)
index
=
__import__
(
'index'
)
dir
(index)
index.sayHello()
index.sayHelloZhCn()
|
执行main.py,可以证实动态加载了index.py,__import__返回的模块也是index模块 。
1
2
3
4
5
|
C:\Users\Admin\Documents\Python3\importtest>python main.py
main
index
hello index
你好 index
|
3. __import__(package.module)相当于from package import name,如果fromlist不传入值,则返回package对应的模块,如果fromlist传入值,则返回package.module对应的模块.
先定义archives包,其中包含user和role两个模块:
1
2
3
4
5
|
#__index__.py
print
(
'archives.__index__'
)
def
sayHello():
print
(
'hello archives'
)
|
1
2
3
4
5
|
#user.py
print
(
'user'
)
def
sayHello():
print
(
'hello user'
)
|
1
2
3
4
5
|
#role.py
print
(
'role'
)
def
sayHello():
print
(
'hello role'
)
|
结构如下:
修改mian.py:
1
2
3
4
5
6
|
#main.py
print
(
'main'
)
archives
=
__import__
(
'archives'
)
archives.sayHello()
archives.user
|
执行main.py,可以证实动态加载了archives包,__import__返回的模块也是archives模块 。
C:\Users\Admin\Documents\Python3\importtest>python main.py main archives.__index__ hello archives Traceback (most recent call last): File "main.py", line 5, in <module> archives.user AttributeError: module 'archives' has no attribute 'user' 。
修改mian.py:
1
2
3
4
5
6
|
#main.py
print
(
'main'
)
archives
=
__import__
(
'archives.user'
)
archives.sayHello()
print
(archives.user)
|
执行main.py,可以证实动态加载了archives包的user模块,__import__返回的模块也是archives模块 。
1
2
3
4
5
6
7
|
C:\Users\Admin\Documents\Python3\importtest>python main.py
main
archives.__index__
user
hello archives
<module 'archives.user' from 'C:\\Users\\Admin\\Documents\\Python3\\import
test\\archives\\user.py'>
|
修改mian.py:
1
2
3
4
5
6
|
#main.py
print
(
'main'
)
archives
=
__import__
(
'archives.user'
,fromlist
=
(
'user'
,))
archives.sayHello()
print
(archives)
|
执行main.py,可以证实动态加载了archives包的user模块,__import__返回的模块是user模块 。
1
2
3
4
5
6
7
|
C:\Users\Admin\Documents\Python3\importtest>python main.py
main
archives.__index__
user
hello user
<module 'archives.user' from 'C:\\Users\\Admin\\Documents\\Python3\\import
test\\archives\\user.py'>
|
4. level参数,指定是使用绝对导入还是相对导入。 0(默认值)表示只执行绝对导入.
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我.
原文链接:http://www.cnblogs.com/sesshoumaru/p/6130171.html 。
最后此篇关于Python内置函数——__import__ 的使用方法的文章就讲到这里了,如果你想了解更多关于Python内置函数——__import__ 的使用方法的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
C语言sscanf()函数:从字符串中读取指定格式的数据 头文件: ?
最近,我有一个关于工作预评估的问题,即使查询了每个功能的工作原理,我也不知道如何解决。这是一个伪代码。 下面是一个名为foo()的函数,该函数将被传递一个值并返回一个值。如果将以下值传递给foo函数,
CStr 函数 返回表达式,该表达式已被转换为 String 子类型的 Variant。 CStr(expression) expression 参数是任意有效的表达式。 说明 通常,可以
CSng 函数 返回表达式,该表达式已被转换为 Single 子类型的 Variant。 CSng(expression) expression 参数是任意有效的表达式。 说明 通常,可
CreateObject 函数 创建并返回对 Automation 对象的引用。 CreateObject(servername.typename [, location]) 参数 serv
Cos 函数 返回某个角的余弦值。 Cos(number) number 参数可以是任何将某个角表示为弧度的有效数值表达式。 说明 Cos 函数取某个角并返回直角三角形两边的比值。此比值是
CLng 函数 返回表达式,此表达式已被转换为 Long 子类型的 Variant。 CLng(expression) expression 参数是任意有效的表达式。 说明 通常,您可以使
CInt 函数 返回表达式,此表达式已被转换为 Integer 子类型的 Variant。 CInt(expression) expression 参数是任意有效的表达式。 说明 通常,可
Chr 函数 返回与指定的 ANSI 字符代码相对应的字符。 Chr(charcode) charcode 参数是可以标识字符的数字。 说明 从 0 到 31 的数字表示标准的不可打印的
CDbl 函数 返回表达式,此表达式已被转换为 Double 子类型的 Variant。 CDbl(expression) expression 参数是任意有效的表达式。 说明 通常,您可
CDate 函数 返回表达式,此表达式已被转换为 Date 子类型的 Variant。 CDate(date) date 参数是任意有效的日期表达式。 说明 IsDate 函数用于判断 d
CCur 函数 返回表达式,此表达式已被转换为 Currency 子类型的 Variant。 CCur(expression) expression 参数是任意有效的表达式。 说明 通常,
CByte 函数 返回表达式,此表达式已被转换为 Byte 子类型的 Variant。 CByte(expression) expression 参数是任意有效的表达式。 说明 通常,可以
CBool 函数 返回表达式,此表达式已转换为 Boolean 子类型的 Variant。 CBool(expression) expression 是任意有效的表达式。 说明 如果 ex
Atn 函数 返回数值的反正切值。 Atn(number) number 参数可以是任意有效的数值表达式。 说明 Atn 函数计算直角三角形两个边的比值 (number) 并返回对应角的弧
Asc 函数 返回与字符串的第一个字母对应的 ANSI 字符代码。 Asc(string) string 参数是任意有效的字符串表达式。如果 string 参数未包含字符,则将发生运行时错误。
Array 函数 返回包含数组的 Variant。 Array(arglist) arglist 参数是赋给包含在 Variant 中的数组元素的值的列表(用逗号分隔)。如果没有指定此参数,则
Abs 函数 返回数字的绝对值。 Abs(number) number 参数可以是任意有效的数值表达式。如果 number 包含 Null,则返回 Null;如果是未初始化变量,则返回 0。
FormatPercent 函数 返回表达式,此表达式已被格式化为尾随有 % 符号的百分比(乘以 100 )。 FormatPercent(expression[,NumDigitsAfterD
FormatNumber 函数 返回表达式,此表达式已被格式化为数值。 FormatNumber( expression [,NumDigitsAfterDecimal [,Inc
我是一名优秀的程序员,十分优秀!