一、.py文件可以看做一個模塊,模塊類似其他語言中封裝的類庫 模塊分類: 內置模塊 自定義模塊 第三方模塊(需要安裝才能使用) 我想要使用cal.py中定義的函數,可以這樣做 cal.py源代碼: import_test.py要使用add函數: 二,內置屬性__name__ cal.py 當執行ca ...
一、.py文件可以看做一個模塊,模塊類似其他語言中封裝的類庫
模塊分類:
內置模塊
自定義模塊
第三方模塊(需要安裝才能使用)
我想要使用cal.py中定義的函數,可以這樣做
cal.py源代碼:
#!/usr/bin/python #coding:utf-8 def add( a, b ): return a + b
import_test.py要使用add函數:
#!/usr/bin/python #coding:utf-8 import cal print cal.add( 10, 20 )
二,內置屬性__name__
cal.py
#!/usr/bin/python #coding:utf-8 def add( a, b ): return a + b print __name__
ghostwu@ghostwu:~/python$ python cal.py __main__ ghostwu@ghostwu:~/python$ python import_test.py cal 30 ghostwu@ghostwu:~/python$
當執行cal.py本身時,__name__被解釋成__main__, 通過模塊引入方式執行時,別解釋成文件名,這個特性有什麼用?
#!/usr/bin/python #coding:utf-8 def add( a, b ): return a + b if __name__ == '__main__': print add( 100, 200 )
ghostwu@ghostwu:~/python$ python import_test.py 30 ghostwu@ghostwu:~/python$ python cal.py 300
這就是__name__的一個小作用,當一個模塊(.py文件)被別的文件調用時,一般是想調用它裡面定義的函數或者方法,我們可以通過__name__讓外部模塊調用方式,不會執行到類似print add( 100, 200 )這樣的
具體業務代碼。只用到裡面的函數或者方法定義。
三、模塊載入順序:
當前目錄如果有同名的系統模塊,那麼當前目錄的模塊會被import,系統模塊會被忽略,如:
1 ghostwu@ghostwu:~/python/module$ ls 2 import_test.py string.py 3 ghostwu@ghostwu:~/python/module$ cat string.py 4 #!/usr/bin/python 5 #coding:utf-8 6 7 def add( a, b ): 8 return a + b 9 ghostwu@ghostwu:~/python/module$ cat import_test.py 10 #!/usr/bin/python 11 #coding:utf-8 12 import string 13 str = 'ghostwu' 14 print string.capitalize( str ) 15 16 ghostwu@ghostwu:~/python/module$ python import_test.py 17 Traceback (most recent call last): 18 File "import_test.py", line 8, in <module> 19 print string.capitalize( str ) 20 AttributeError: 'module' object has no attribute 'capitalize' 21 ghostwu@ghostwu:~/python/module$ ls -a 22 . .. import_test.py string.py string.pyc
在當前目錄下,定義了一個同名的string模塊( 指的是與系統的string模塊同名 ),由於執行的時候,當前目錄的模塊被import了,所以識別不了系統string模塊的方法capttalize.
只要刪除目錄下的string.py string.pyc,就能正常import系統的模塊
1 ghostwu@ghostwu:~/python/module$ ls -a 2 . .. import_test.py string.py string.pyc 3 ghostwu@ghostwu:~/python/module$ rm string.py string.pyc 4 ghostwu@ghostwu:~/python/module$ ls -a 5 . .. import_test.py 6 ghostwu@ghostwu:~/python/module$ python import_test.py 7 Ghostwu
四,當一個目錄下有__init__.py文件,就可以當做一個包來用
1 ghostwu@ghostwu:~/python/package_test$ pwd 2 /home/ghostwu/python/package_test 3 ghostwu@ghostwu:~/python/package_test$ ls -a 4 . .. calc.py calc.pyc fab.py fab.pyc __init__.py __init__.pyc 5 ghostwu@ghostwu:~/python/package_test$ cat calc.py 6 #!/usr/bin/python 7 #coding:utf-8 8 9 def add( a, b ): 10 return a + b 11 12 def sbb( a, b ): 13 return a - b 14 15 def mul( a, b ): 16 return a * b 17 18 def div( a, b ): 19 return a / b 20 21 oper = { '+' : add, '-' : sbb, '*' : mul, '/' : div } 22 23 def mySwitch( x, o, y ): 24 return oper.get( o )( x, y ) 25 26 ghostwu@ghostwu:~/python/package_test$ cat fab.py 27 #!/usr/bin/python 28 #coding:utf-8 29 30 def fab( n ): 31 if n == 0: 32 return 1 33 else: 34 return n * fab( n - 1)
在test.py中,引用包中的模塊
1 ghostwu@ghostwu:~/python/package_test$ cd .. 2 ghostwu@ghostwu:~/python$ ls -a 3 . .. module package_test test.py tmp 4 ghostwu@ghostwu:~/python$ cat test.py 5 #!/usr/bin/python 6 #coding:utf-8 7 8 import package_test.calc 9 import package_test.fab 10 11 print package_test.calc.add( 10, 20 ) 12 print package_test.fab.fab( 6 ) 13 ghostwu@ghostwu:~/python$ python test.py 14 30 15 720 16 ghostwu@ghostwu:~/python$
導入模塊的另外兩種方式: 別名與直接導入方法
1 ghostwu@ghostwu:~/python/package_test$ ls 2 calc.py calc.pyc fab.py fab.pyc __init__.py __init__.pyc 3 ghostwu@ghostwu:~/python/package_test$ python 4 Python 2.7.12 (default, Dec 4 2017, 14:50:18) 5 [GCC 5.4.0 20160609] on linux2 6 Type "help", "copyright", "credits" or "license" for more information. 7 >>> import calc 8 >>> calc.add( 10, 20 ) 9 30 10 >>> import calc as c 11 >>> c.add( 100, 200 ) 12 300 13 >>> from calc import add 14 >>> add( 1, 2 ) 15 3