Python 模組

Python 模組化程式設計

在程式設計時,模組化程式設計可以快速擴充套件為大型程式碼庫。為了管理複雜性,我們可以使用類、函式和模組。

Python 模組內容

要在模組中顯示可訪問的函式(和包含的變數),可以使用以下程式碼:

#!/usr/bin/env python
import sys
 
print(dir(sys))

結果:

['__displayhook__', '__doc__', '__egginsert', '__excepthook__', '__name__', '__package__', '__plen', '__stderr__', '__stdin__', 
'__stdout__', '_clear_type_cache', '_current_frames', '_getframe', '_mercurial', '_multiarch', 'api_version', 'argv', 
'builtin_module_names', 'byteorder', 'call_tracing', 'callstats', 'copyright', 'displayhook', 'dont_write_bytecode', 
'exc_clear', 'exc_info', 'exc_type', 'excepthook', 'exec_prefix', 'executable', 'exit', 'flags', 'float_info', 'float_repr_style'
, 'getcheckinterval', 'getdefaultencoding', 'getdlopenflags', 'getfilesystemencoding', 'getprofile', 'getrecursionlimit', 
'getrefcount', 'getsizeof', 'gettrace', 'hexversion', 'long_info', 'maxint', 'maxsize', 'maxunicode', 'meta_path', 'modules', 
'path', 'path_hooks', 'path_importer_cache', 'platform', 'prefix', 'py3kwarning', 'pydebug', 'setcheckinterval', 'setdlopenflags'
, 'setprofile', 'setrecursionlimit', 'settrace', 'stderr', 'stdin', 'stdout', 'subversion', 'version', 'version_info', 
'warnoptions']

建立一個模組

你可以在以下步驟中建立自己的模組:

建立一個名為 test.py 的檔案(你自己的模組)

#!/usr/bin/env python
 
def add(a,b):
    return a+b

然後建立一個名為 app.py 的檔案:

from test import *
 
print('hello')
print(add(5,2))