René's URL Explorer Experiment


Title: Python 教學 — Python 3.14.0 說明文件

direct link

Domain: python.github.io

readthedocs-addons-api-version1

Links:

https://www.python.org/
Changelog(更動日誌)https://python.github.io/python-docs-zh-tw/whatsnew/changelog.html
1. 淺嘗滋味https://python.github.io/python-docs-zh-tw/tutorial/appetite.html
回報錯誤https://python.github.io/python-docs-zh-tw/bugs.html
顯示原始碼 https://github.com/python/cpython/blob/main/Doc/tutorial/index.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/appetite.html
上一頁https://python.github.io/python-docs-zh-tw/whatsnew/changelog.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
https://python.github.io/python-docs-zh-tw/tutorial/index.html#the-python-tutorial
https://www.python.org/https://www.python.org/
Python 標準函式庫 (Standard Library)https://python.github.io/python-docs-zh-tw/library/index.html#library-index
Python 語言參考手冊https://python.github.io/python-docs-zh-tw/reference/index.html#reference-index
擴充和嵌入 Python 直譯器https://python.github.io/python-docs-zh-tw/extending/index.html#extending-index
Python/C API 參考手冊https://python.github.io/python-docs-zh-tw/c-api/index.html#c-api-index
Python 標準函式庫 (Standard Library)https://python.github.io/python-docs-zh-tw/library/index.html#library-index
術語表https://python.github.io/python-docs-zh-tw/glossary.html#glossary
1. 淺嘗滋味https://python.github.io/python-docs-zh-tw/tutorial/appetite.html
2. 使用 Python 直譯器https://python.github.io/python-docs-zh-tw/tutorial/interpreter.html
2.1. 啟動直譯器https://python.github.io/python-docs-zh-tw/tutorial/interpreter.html#invoking-the-interpreter
2.1.1. 傳遞引數https://python.github.io/python-docs-zh-tw/tutorial/interpreter.html#argument-passing
2.1.2. 互動模式https://python.github.io/python-docs-zh-tw/tutorial/interpreter.html#interactive-mode
2.2. 直譯器與它的環境https://python.github.io/python-docs-zh-tw/tutorial/interpreter.html#the-interpreter-and-its-environment
2.2.1. 原始碼的字元編碼 (encoding)https://python.github.io/python-docs-zh-tw/tutorial/interpreter.html#source-code-encoding
3. 一個非正式的 Python 簡介https://python.github.io/python-docs-zh-tw/tutorial/introduction.html
3.1. 把 Python 當作計算機使用https://python.github.io/python-docs-zh-tw/tutorial/introduction.html#using-python-as-a-calculator
3.1.1. 數字 (Number)https://python.github.io/python-docs-zh-tw/tutorial/introduction.html#numbers
3.1.2. 文字https://python.github.io/python-docs-zh-tw/tutorial/introduction.html#text
3.1.3. List(串列)https://python.github.io/python-docs-zh-tw/tutorial/introduction.html#lists
3.2. 初探程式設計的前幾步https://python.github.io/python-docs-zh-tw/tutorial/introduction.html#first-steps-towards-programming
4. 深入了解流程控制https://python.github.io/python-docs-zh-tw/tutorial/controlflow.html
4.1. if 陳述式https://python.github.io/python-docs-zh-tw/tutorial/controlflow.html#if-statements
4.2. for 陳述式https://python.github.io/python-docs-zh-tw/tutorial/controlflow.html#for-statements
4.3. range() 函式https://python.github.io/python-docs-zh-tw/tutorial/controlflow.html#the-range-function
4.4. break 和 continue 陳述式https://python.github.io/python-docs-zh-tw/tutorial/controlflow.html#break-and-continue-statements
4.5. 迴圈的 else 子句https://python.github.io/python-docs-zh-tw/tutorial/controlflow.html#else-clauses-on-loops
4.6. pass 陳述式https://python.github.io/python-docs-zh-tw/tutorial/controlflow.html#pass-statements
4.7. match 陳述式https://python.github.io/python-docs-zh-tw/tutorial/controlflow.html#match-statements
4.8. 定義函式 (function)https://python.github.io/python-docs-zh-tw/tutorial/controlflow.html#defining-functions
4.9. 深入了解函式定義https://python.github.io/python-docs-zh-tw/tutorial/controlflow.html#more-on-defining-functions
4.9.1. 預設引數值https://python.github.io/python-docs-zh-tw/tutorial/controlflow.html#default-argument-values
4.9.2. 關鍵字引數https://python.github.io/python-docs-zh-tw/tutorial/controlflow.html#keyword-arguments
4.9.3. 特殊參數https://python.github.io/python-docs-zh-tw/tutorial/controlflow.html#special-parameters
4.9.3.1. 位置或關鍵字引數 (Positional-or-Keyword Arguments)https://python.github.io/python-docs-zh-tw/tutorial/controlflow.html#positional-or-keyword-arguments
4.9.3.2. 僅限位置參數 (Positional-Only Parameters)https://python.github.io/python-docs-zh-tw/tutorial/controlflow.html#positional-only-parameters
4.9.3.3. 僅限關鍵字引數 (Keyword-Only Arguments)https://python.github.io/python-docs-zh-tw/tutorial/controlflow.html#keyword-only-arguments
4.9.3.4. 函式範例https://python.github.io/python-docs-zh-tw/tutorial/controlflow.html#function-examples
4.9.3.5. 回顧https://python.github.io/python-docs-zh-tw/tutorial/controlflow.html#recap
4.9.4. 任意引數列表 (Arbitrary Argument Lists)https://python.github.io/python-docs-zh-tw/tutorial/controlflow.html#arbitrary-argument-lists
4.9.5. 拆解引數列表(Unpacking Argument Lists)https://python.github.io/python-docs-zh-tw/tutorial/controlflow.html#unpacking-argument-lists
4.9.6. Lambda 運算式https://python.github.io/python-docs-zh-tw/tutorial/controlflow.html#lambda-expressions
4.9.7. 說明文件字串 (Documentation Strings)https://python.github.io/python-docs-zh-tw/tutorial/controlflow.html#documentation-strings
4.9.8. 函式註釋 (Function Annotations)https://python.github.io/python-docs-zh-tw/tutorial/controlflow.html#function-annotations
4.10. 間奏曲:程式碼風格 (Coding Style)https://python.github.io/python-docs-zh-tw/tutorial/controlflow.html#intermezzo-coding-style
5. 資料結構https://python.github.io/python-docs-zh-tw/tutorial/datastructures.html
5.1. 進一步了解 List(串列)https://python.github.io/python-docs-zh-tw/tutorial/datastructures.html#more-on-lists
5.1.1. 將 List 作為 Stack(堆疊)使用https://python.github.io/python-docs-zh-tw/tutorial/datastructures.html#using-lists-as-stacks
5.1.2. 將 List 作為 Queue(佇列)使用https://python.github.io/python-docs-zh-tw/tutorial/datastructures.html#using-lists-as-queues
5.1.3. List Comprehensions(串列綜合運算)https://python.github.io/python-docs-zh-tw/tutorial/datastructures.html#list-comprehensions
5.1.4. 巢狀的 List Comprehensionshttps://python.github.io/python-docs-zh-tw/tutorial/datastructures.html#nested-list-comprehensions
5.2. del 陳述式https://python.github.io/python-docs-zh-tw/tutorial/datastructures.html#the-del-statement
5.3. Tuples 和序列 (Sequences)https://python.github.io/python-docs-zh-tw/tutorial/datastructures.html#tuples-and-sequences
5.4. 集合 (Sets)https://python.github.io/python-docs-zh-tw/tutorial/datastructures.html#sets
5.5. 字典(Dictionary)https://python.github.io/python-docs-zh-tw/tutorial/datastructures.html#dictionaries
5.6. 迴圈技巧https://python.github.io/python-docs-zh-tw/tutorial/datastructures.html#looping-techniques
5.7. 深入了解條件 (Condition)https://python.github.io/python-docs-zh-tw/tutorial/datastructures.html#more-on-conditions
5.8. 序列和其他資料類型之比較https://python.github.io/python-docs-zh-tw/tutorial/datastructures.html#comparing-sequences-and-other-types
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
7. 輸入和輸出https://python.github.io/python-docs-zh-tw/tutorial/inputoutput.html
7.1. 更華麗的輸出格式https://python.github.io/python-docs-zh-tw/tutorial/inputoutput.html#fancier-output-formatting
7.1.1. 格式化的字串文本 (Formatted String Literals)https://python.github.io/python-docs-zh-tw/tutorial/inputoutput.html#formatted-string-literals
7.1.2. 字串的 format() methodhttps://python.github.io/python-docs-zh-tw/tutorial/inputoutput.html#the-string-format-method
7.1.3. 手動格式化字串https://python.github.io/python-docs-zh-tw/tutorial/inputoutput.html#manual-string-formatting
7.1.4. 格式化字串的舊方法https://python.github.io/python-docs-zh-tw/tutorial/inputoutput.html#old-string-formatting
7.2. 讀寫檔案https://python.github.io/python-docs-zh-tw/tutorial/inputoutput.html#reading-and-writing-files
7.2.1. 檔案物件的 methodhttps://python.github.io/python-docs-zh-tw/tutorial/inputoutput.html#methods-of-file-objects
7.2.2. 使用 json 儲存結構化資料https://python.github.io/python-docs-zh-tw/tutorial/inputoutput.html#saving-structured-data-with-json
8. 錯誤和例外https://python.github.io/python-docs-zh-tw/tutorial/errors.html
8.1. 語法錯誤 (Syntax Error)https://python.github.io/python-docs-zh-tw/tutorial/errors.html#syntax-errors
8.2. 例外 (Exception)https://python.github.io/python-docs-zh-tw/tutorial/errors.html#exceptions
8.3. 處理例外https://python.github.io/python-docs-zh-tw/tutorial/errors.html#handling-exceptions
8.4. 引發例外https://python.github.io/python-docs-zh-tw/tutorial/errors.html#raising-exceptions
8.5. 例外鏈接 (Exception Chaining)https://python.github.io/python-docs-zh-tw/tutorial/errors.html#exception-chaining
8.6. 使用者自定的例外https://python.github.io/python-docs-zh-tw/tutorial/errors.html#user-defined-exceptions
8.7. 定義清理動作https://python.github.io/python-docs-zh-tw/tutorial/errors.html#defining-clean-up-actions
8.8. 預定義的清理動作https://python.github.io/python-docs-zh-tw/tutorial/errors.html#predefined-clean-up-actions
8.9. 引發及處理多個無關的例外https://python.github.io/python-docs-zh-tw/tutorial/errors.html#raising-and-handling-multiple-unrelated-exceptions
8.10. 用註解使例外更詳細https://python.github.io/python-docs-zh-tw/tutorial/errors.html#enriching-exceptions-with-notes
9. Class(類別)https://python.github.io/python-docs-zh-tw/tutorial/classes.html
9.1. 關於名稱與物件的一段話https://python.github.io/python-docs-zh-tw/tutorial/classes.html#a-word-about-names-and-objects
9.2. Python 作用域 (Scope) 及命名空間 (Namespace)https://python.github.io/python-docs-zh-tw/tutorial/classes.html#python-scopes-and-namespaces
9.2.1. 作用域和命名空間的範例https://python.github.io/python-docs-zh-tw/tutorial/classes.html#scopes-and-namespaces-example
9.3. 初見 classhttps://python.github.io/python-docs-zh-tw/tutorial/classes.html#a-first-look-at-classes
9.3.1. Class definition(類別定義)語法https://python.github.io/python-docs-zh-tw/tutorial/classes.html#class-definition-syntax
9.3.2. Class 物件https://python.github.io/python-docs-zh-tw/tutorial/classes.html#class-objects
9.3.3. 實例物件https://python.github.io/python-docs-zh-tw/tutorial/classes.html#instance-objects
9.3.4. Method 物件https://python.github.io/python-docs-zh-tw/tutorial/classes.html#method-objects
9.3.5. Class 及實例變數https://python.github.io/python-docs-zh-tw/tutorial/classes.html#class-and-instance-variables
9.4. 隨意的備註https://python.github.io/python-docs-zh-tw/tutorial/classes.html#random-remarks
9.5. 繼承 (Inheritance)https://python.github.io/python-docs-zh-tw/tutorial/classes.html#inheritance
9.5.1. 多重繼承https://python.github.io/python-docs-zh-tw/tutorial/classes.html#multiple-inheritance
9.6. 私有變數https://python.github.io/python-docs-zh-tw/tutorial/classes.html#private-variables
9.7. 補充說明https://python.github.io/python-docs-zh-tw/tutorial/classes.html#odds-and-ends
9.8. 疊代器 (Iterator)https://python.github.io/python-docs-zh-tw/tutorial/classes.html#iterators
9.9. 產生器 (Generator)https://python.github.io/python-docs-zh-tw/tutorial/classes.html#generators
9.10. 產生器運算式https://python.github.io/python-docs-zh-tw/tutorial/classes.html#generator-expressions
10. Python 標準函式庫概覽https://python.github.io/python-docs-zh-tw/tutorial/stdlib.html
10.1. 作業系統介面https://python.github.io/python-docs-zh-tw/tutorial/stdlib.html#operating-system-interface
10.2. 檔案之萬用字元 (File Wildcards)https://python.github.io/python-docs-zh-tw/tutorial/stdlib.html#file-wildcards
10.3. 命令列引數https://python.github.io/python-docs-zh-tw/tutorial/stdlib.html#command-line-arguments
10.4. 錯誤輸出重新導向與程式終止https://python.github.io/python-docs-zh-tw/tutorial/stdlib.html#error-output-redirection-and-program-termination
10.5. 字串樣式比對https://python.github.io/python-docs-zh-tw/tutorial/stdlib.html#string-pattern-matching
10.6. 數學相關https://python.github.io/python-docs-zh-tw/tutorial/stdlib.html#mathematics
10.7. 網路存取https://python.github.io/python-docs-zh-tw/tutorial/stdlib.html#internet-access
10.8. 日期與時間https://python.github.io/python-docs-zh-tw/tutorial/stdlib.html#dates-and-times
10.9. 資料壓縮https://python.github.io/python-docs-zh-tw/tutorial/stdlib.html#data-compression
10.10. 效能量測https://python.github.io/python-docs-zh-tw/tutorial/stdlib.html#performance-measurement
10.11. 品質控管https://python.github.io/python-docs-zh-tw/tutorial/stdlib.html#quality-control
10.12. 標準模組庫https://python.github.io/python-docs-zh-tw/tutorial/stdlib.html#batteries-included
11. Python 標準函式庫概覽——第二部份https://python.github.io/python-docs-zh-tw/tutorial/stdlib2.html
11.1. 輸出格式化 (Output Formatting)https://python.github.io/python-docs-zh-tw/tutorial/stdlib2.html#output-formatting
11.2. 模板化 (Templating)https://python.github.io/python-docs-zh-tw/tutorial/stdlib2.html#templating
11.3. 二進制資料記錄編排 (Binary Data Record Layouts)https://python.github.io/python-docs-zh-tw/tutorial/stdlib2.html#working-with-binary-data-record-layouts
11.4. 多執行緒 (Multi-threading)https://python.github.io/python-docs-zh-tw/tutorial/stdlib2.html#multi-threading
11.5. 日誌記錄 (Logging)https://python.github.io/python-docs-zh-tw/tutorial/stdlib2.html#logging
11.6. 弱引用 (Weak References)https://python.github.io/python-docs-zh-tw/tutorial/stdlib2.html#weak-references
11.7. 使用於 List 的工具https://python.github.io/python-docs-zh-tw/tutorial/stdlib2.html#tools-for-working-with-lists
11.8. 十進制浮點數運算 (Decimal Floating-Point Arithmetic)https://python.github.io/python-docs-zh-tw/tutorial/stdlib2.html#decimal-floating-point-arithmetic
12. 虛擬環境與套件https://python.github.io/python-docs-zh-tw/tutorial/venv.html
12.1. 簡介https://python.github.io/python-docs-zh-tw/tutorial/venv.html#introduction
12.2. 建立虛擬環境https://python.github.io/python-docs-zh-tw/tutorial/venv.html#creating-virtual-environments
12.3. 用 pip 管理套件https://python.github.io/python-docs-zh-tw/tutorial/venv.html#managing-packages-with-pip
13. 現在可以來學習些什麼?https://python.github.io/python-docs-zh-tw/tutorial/whatnow.html
14. 互動式輸入編輯和歷史記錄替換https://python.github.io/python-docs-zh-tw/tutorial/interactive.html
14.1. Tab 鍵自動完成 (Tab Completion) 和歷史記錄編輯 (History Editing)https://python.github.io/python-docs-zh-tw/tutorial/interactive.html#tab-completion-and-history-editing
14.2. 互動式直譯器的替代方案https://python.github.io/python-docs-zh-tw/tutorial/interactive.html#alternatives-to-the-interactive-interpreter
15. 浮點數運算:問題與限制https://python.github.io/python-docs-zh-tw/tutorial/floatingpoint.html
15.1. 表示法誤差 (Representation Error)https://python.github.io/python-docs-zh-tw/tutorial/floatingpoint.html#representation-error
16. 附錄https://python.github.io/python-docs-zh-tw/tutorial/appendix.html
16.1. 互動模式https://python.github.io/python-docs-zh-tw/tutorial/appendix.html#interactive-mode
16.1.1. 錯誤處理https://python.github.io/python-docs-zh-tw/tutorial/appendix.html#error-handling
16.1.2. 可執行的 Python 腳本https://python.github.io/python-docs-zh-tw/tutorial/appendix.html#executable-python-scripts
16.1.3. 互動式啟動檔案https://python.github.io/python-docs-zh-tw/tutorial/appendix.html#the-interactive-startup-file
16.1.4. 客製化模組https://python.github.io/python-docs-zh-tw/tutorial/appendix.html#the-customization-modules
Changelog(更動日誌)https://python.github.io/python-docs-zh-tw/whatsnew/changelog.html
1. 淺嘗滋味https://python.github.io/python-docs-zh-tw/tutorial/appetite.html
回報錯誤https://python.github.io/python-docs-zh-tw/bugs.html
顯示原始碼 https://github.com/python/cpython/blob/main/Doc/tutorial/index.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/appetite.html
上一頁https://python.github.io/python-docs-zh-tw/whatsnew/changelog.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
版權所有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.