python中import和from...import区别

Posted Dawnlight

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python中import和from...import区别相关的知识,希望对你有一定的参考价值。

在python用import或者from...import来导入相应的模块。模块其实就是一些函数和类的集合文件,它能实现一些相应的功能,当我们需要使用这些功能的时候,直接把相应的模块导入到我们的程序中,我们就可以使用了。这类似于C语言中的include头文件,Python中我们用import导入我们需要的模块。

eg:

import sys
print(\'================Python import mode==========================\');
print (\'The command line arguments are:\')
for i in sys.argv:
    print (i)
print (\'\\n The python path\',sys.path)

from sys import argv,path  #  导入特定的成员
print(\'================python from import===================================\')
print(\'path:\',path) # 因为已经导入path成员,所以此处引用时不需要加sys.path

如果你要使用所有sys模块使用的名字,你可以这样:

from sys import *
print(\'path:\',path)

从以上我们可以简单看出:

############################
#导入modules,import与from...import的不同之处在于,简单说:
# 如果你想在程序中用argv代表sys.argv,
# 则可使用:from sys import argv
# 一般说来,应该避免使用from..import而使用import语句,
# 因为这样可以使你的程序更加易读,也可以避免名称的冲突
###########################

 

 

引自:http://www.cnblogs.com/qi09/archive/2012/02/09/2344148.html

以上是关于python中import和from...import区别的主要内容,如果未能解决你的问题,请参考以下文章

python import 和 from XX import * 的区别

python中import和from-import的区别

python中import和from...import区别

Python中import和from......import的区别

Python中import和from

Python中from…import语句的参数都有哪些呢?