René's URL Explorer Experiment


Title: 6. 模組 (Module) — Python 3.14.0 說明文件

direct link

Domain: python.github.io

readthedocs-addons-api-version1

Links:

https://www.python.org/
目錄https://python.github.io/python-docs-zh-tw/contents.html
6. 模組 (Module)https://python.github.io/python-docs-zh-tw/tutorial/modules.html
6.1. 深入了解模組https://python.github.io/python-docs-zh-tw/tutorial/modules.html#more-on-modules
6.1.1. 把模組當作腳本執行https://python.github.io/python-docs-zh-tw/tutorial/modules.html#executing-modules-as-scripts
6.1.2. 模組的搜尋路徑https://python.github.io/python-docs-zh-tw/tutorial/modules.html#the-module-search-path
6.1.3. 「編譯」Python 檔案https://python.github.io/python-docs-zh-tw/tutorial/modules.html#compiled-python-files
6.2. 標準模組https://python.github.io/python-docs-zh-tw/tutorial/modules.html#standard-modules
6.3. dir() 函式https://python.github.io/python-docs-zh-tw/tutorial/modules.html#the-dir-function
6.4. 套件 (Package)https://python.github.io/python-docs-zh-tw/tutorial/modules.html#packages
6.4.1. 從套件中 import *https://python.github.io/python-docs-zh-tw/tutorial/modules.html#importing-from-a-package
6.4.2. 套件內引用https://python.github.io/python-docs-zh-tw/tutorial/modules.html#intra-package-references
6.4.3. 多目錄中的套件https://python.github.io/python-docs-zh-tw/tutorial/modules.html#packages-in-multiple-directories
5. 資料結構https://python.github.io/python-docs-zh-tw/tutorial/datastructures.html
7. 輸入和輸出https://python.github.io/python-docs-zh-tw/tutorial/inputoutput.html
回報錯誤https://python.github.io/python-docs-zh-tw/bugs.html
顯示原始碼 https://github.com/python/cpython/blob/main/Doc/tutorial/modules.rst?plain=1
索引https://python.github.io/python-docs-zh-tw/genindex.html
模組https://python.github.io/python-docs-zh-tw/py-modindex.html
下一頁https://python.github.io/python-docs-zh-tw/tutorial/inputoutput.html
上一頁https://python.github.io/python-docs-zh-tw/tutorial/datastructures.html
Pythonhttps://www.python.org/
3.14.0 Documentationhttps://python.github.io/python-docs-zh-tw/index.html
Python 教學https://python.github.io/python-docs-zh-tw/tutorial/index.html
6. 模組 (Module)https://python.github.io/python-docs-zh-tw/tutorial/modules.html
https://python.github.io/python-docs-zh-tw/tutorial/modules.html#modules
namespacehttps://python.github.io/python-docs-zh-tw/glossary.html#term-namespace
Python 作用域 (Scope) 及命名空間 (Namespace)https://python.github.io/python-docs-zh-tw/tutorial/classes.html#tut-scopes
https://python.github.io/python-docs-zh-tw/tutorial/modules.html#more-on-modules
[1]https://python.github.io/python-docs-zh-tw/tutorial/modules.html#id3
importhttps://python.github.io/python-docs-zh-tw/reference/simple_stmts.html#import
importhttps://python.github.io/python-docs-zh-tw/reference/simple_stmts.html#import
fromhttps://python.github.io/python-docs-zh-tw/reference/simple_stmts.html#from
importlib.reload()https://python.github.io/python-docs-zh-tw/library/importlib.html#importlib.reload
https://python.github.io/python-docs-zh-tw/tutorial/modules.html#executing-modules-as-scripts
https://python.github.io/python-docs-zh-tw/tutorial/modules.html#the-module-search-path
sys.builtin_module_nameshttps://python.github.io/python-docs-zh-tw/library/sys.html#sys.builtin_module_names
sys.pathhttps://python.github.io/python-docs-zh-tw/library/sys.html#sys.path
sys.pathhttps://python.github.io/python-docs-zh-tw/library/sys.html#sys.path
PYTHONPATHhttps://python.github.io/python-docs-zh-tw/using/cmdline.html#envvar-PYTHONPATH
sitehttps://python.github.io/python-docs-zh-tw/library/site.html#module-site
sys.path 模組搜尋路徑的初始化https://python.github.io/python-docs-zh-tw/library/sys_path_init.html#sys-path-init
sys.pathhttps://python.github.io/python-docs-zh-tw/library/sys.html#sys.path
標準模組https://python.github.io/python-docs-zh-tw/tutorial/modules.html#tut-standardmodules
https://python.github.io/python-docs-zh-tw/tutorial/modules.html#compiled-python-files
-Ohttps://python.github.io/python-docs-zh-tw/using/cmdline.html#cmdoption-O
-OOhttps://python.github.io/python-docs-zh-tw/using/cmdline.html#cmdoption-OO
compileallhttps://python.github.io/python-docs-zh-tw/library/compileall.html#module-compileall
PEP 3147https://peps.python.org/pep-3147/
https://python.github.io/python-docs-zh-tw/tutorial/modules.html#standard-modules
winreghttps://python.github.io/python-docs-zh-tw/library/winreg.html#module-winreg
syshttps://python.github.io/python-docs-zh-tw/library/sys.html#module-sys
PYTHONPATHhttps://python.github.io/python-docs-zh-tw/using/cmdline.html#envvar-PYTHONPATH
PYTHONPATHhttps://python.github.io/python-docs-zh-tw/using/cmdline.html#envvar-PYTHONPATH
dir()https://python.github.io/python-docs-zh-tw/library/functions.html#dir
https://python.github.io/python-docs-zh-tw/tutorial/modules.html#the-dir-function
dir()https://python.github.io/python-docs-zh-tw/library/functions.html#dir
dir()https://python.github.io/python-docs-zh-tw/library/functions.html#dir
dir()https://python.github.io/python-docs-zh-tw/library/functions.html#dir
builtinshttps://python.github.io/python-docs-zh-tw/library/builtins.html#module-builtins
https://python.github.io/python-docs-zh-tw/tutorial/modules.html#packages
namespace packagehttps://python.github.io/python-docs-zh-tw/glossary.html#term-namespace-package
ImportErrorhttps://python.github.io/python-docs-zh-tw/library/exceptions.html#ImportError
https://python.github.io/python-docs-zh-tw/tutorial/modules.html#importing-from-a-package
importhttps://python.github.io/python-docs-zh-tw/reference/simple_stmts.html#import
importhttps://python.github.io/python-docs-zh-tw/reference/simple_stmts.html#import
https://python.github.io/python-docs-zh-tw/tutorial/modules.html#intra-package-references
https://python.github.io/python-docs-zh-tw/tutorial/modules.html#packages-in-multiple-directories
__path__https://python.github.io/python-docs-zh-tw/reference/datamodel.html#module.__path__
序列https://python.github.io/python-docs-zh-tw/glossary.html#term-sequence
1https://python.github.io/python-docs-zh-tw/tutorial/modules.html#id1
目錄https://python.github.io/python-docs-zh-tw/contents.html
6. 模組 (Module)https://python.github.io/python-docs-zh-tw/tutorial/modules.html
6.1. 深入了解模組https://python.github.io/python-docs-zh-tw/tutorial/modules.html#more-on-modules
6.1.1. 把模組當作腳本執行https://python.github.io/python-docs-zh-tw/tutorial/modules.html#executing-modules-as-scripts
6.1.2. 模組的搜尋路徑https://python.github.io/python-docs-zh-tw/tutorial/modules.html#the-module-search-path
6.1.3. 「編譯」Python 檔案https://python.github.io/python-docs-zh-tw/tutorial/modules.html#compiled-python-files
6.2. 標準模組https://python.github.io/python-docs-zh-tw/tutorial/modules.html#standard-modules
6.3. dir() 函式https://python.github.io/python-docs-zh-tw/tutorial/modules.html#the-dir-function
6.4. 套件 (Package)https://python.github.io/python-docs-zh-tw/tutorial/modules.html#packages
6.4.1. 從套件中 import *https://python.github.io/python-docs-zh-tw/tutorial/modules.html#importing-from-a-package
6.4.2. 套件內引用https://python.github.io/python-docs-zh-tw/tutorial/modules.html#intra-package-references
6.4.3. 多目錄中的套件https://python.github.io/python-docs-zh-tw/tutorial/modules.html#packages-in-multiple-directories
5. 資料結構https://python.github.io/python-docs-zh-tw/tutorial/datastructures.html
7. 輸入和輸出https://python.github.io/python-docs-zh-tw/tutorial/inputoutput.html
回報錯誤https://python.github.io/python-docs-zh-tw/bugs.html
顯示原始碼 https://github.com/python/cpython/blob/main/Doc/tutorial/modules.rst?plain=1
索引https://python.github.io/python-docs-zh-tw/genindex.html
模組https://python.github.io/python-docs-zh-tw/py-modindex.html
下一頁https://python.github.io/python-docs-zh-tw/tutorial/inputoutput.html
上一頁https://python.github.io/python-docs-zh-tw/tutorial/datastructures.html
Pythonhttps://www.python.org/
3.14.0 Documentationhttps://python.github.io/python-docs-zh-tw/index.html
Python 教學https://python.github.io/python-docs-zh-tw/tutorial/index.html
6. 模組 (Module)https://python.github.io/python-docs-zh-tw/tutorial/modules.html
版權所有https://python.github.io/python-docs-zh-tw/copyright.html
歷史與授權條款https://python.github.io/license.html
敬請捐贈。https://www.python.org/psf/donations/
發現 bughttps://python.github.io/bugs.html
Sphinxhttps://www.sphinx-doc.org/

Viewport: width=device-width, initial-scale=1.0


URLs of crawlers that visited me.