René's URL Explorer Experiment


Title: 5. 資料結構 — 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
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
4. 深入了解流程控制https://python.github.io/python-docs-zh-tw/tutorial/controlflow.html
6. 模組 (Module)https://python.github.io/python-docs-zh-tw/tutorial/modules.html
回報錯誤https://python.github.io/python-docs-zh-tw/bugs.html
顯示原始碼 https://github.com/python/cpython/blob/main/Doc/tutorial/datastructures.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/modules.html
上一頁https://python.github.io/python-docs-zh-tw/tutorial/controlflow.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
5. 資料結構https://python.github.io/python-docs-zh-tw/tutorial/datastructures.html
https://python.github.io/python-docs-zh-tw/tutorial/datastructures.html#data-structures
https://python.github.io/python-docs-zh-tw/tutorial/datastructures.html#more-on-lists
List(串列)https://python.github.io/python-docs-zh-tw/library/stdtypes.html#typesseq-list
ValueErrorhttps://python.github.io/python-docs-zh-tw/library/exceptions.html#ValueError
IndexErrorhttps://python.github.io/python-docs-zh-tw/library/exceptions.html#IndexError
ValueErrorhttps://python.github.io/python-docs-zh-tw/library/exceptions.html#ValueError
sorted()https://python.github.io/python-docs-zh-tw/library/functions.html#sorted
[1]https://python.github.io/python-docs-zh-tw/tutorial/datastructures.html#id2
https://python.github.io/python-docs-zh-tw/tutorial/datastructures.html#using-lists-as-stacks
append()https://python.github.io/python-docs-zh-tw/library/stdtypes.html#list.append
pop()https://python.github.io/python-docs-zh-tw/library/stdtypes.html#list.pop
https://python.github.io/python-docs-zh-tw/tutorial/datastructures.html#using-lists-as-queues
collections.dequehttps://python.github.io/python-docs-zh-tw/library/collections.html#collections.deque
https://python.github.io/python-docs-zh-tw/tutorial/datastructures.html#list-comprehensions
forhttps://python.github.io/python-docs-zh-tw/reference/compound_stmts.html#for
ifhttps://python.github.io/python-docs-zh-tw/reference/compound_stmts.html#if
https://python.github.io/python-docs-zh-tw/tutorial/datastructures.html#nested-list-comprehensions
forhttps://python.github.io/python-docs-zh-tw/reference/compound_stmts.html#for
zip()https://python.github.io/python-docs-zh-tw/library/functions.html#zip
拆解引數列表(Unpacking Argument Lists)https://python.github.io/python-docs-zh-tw/tutorial/controlflow.html#tut-unpacking-arguments
https://python.github.io/python-docs-zh-tw/tutorial/datastructures.html#the-del-statement
delhttps://python.github.io/python-docs-zh-tw/reference/simple_stmts.html#del
pop()https://python.github.io/python-docs-zh-tw/library/stdtypes.html#list.pop
delhttps://python.github.io/python-docs-zh-tw/reference/simple_stmts.html#del
delhttps://python.github.io/python-docs-zh-tw/reference/simple_stmts.html#del
https://python.github.io/python-docs-zh-tw/tutorial/datastructures.html#tuples-and-sequences
Sequence Types --- list, tuple, rangehttps://python.github.io/python-docs-zh-tw/library/stdtypes.html#typesseq
immutablehttps://python.github.io/python-docs-zh-tw/glossary.html#term-immutable
namedtupleshttps://python.github.io/python-docs-zh-tw/library/collections.html#collections.namedtuple
mutablehttps://python.github.io/python-docs-zh-tw/glossary.html#term-mutable
https://python.github.io/python-docs-zh-tw/tutorial/datastructures.html#sets
集合 (sets)https://python.github.io/python-docs-zh-tw/library/stdtypes.html#types-set
set()https://python.github.io/python-docs-zh-tw/library/stdtypes.html#set
list comprehensionshttps://python.github.io/python-docs-zh-tw/tutorial/datastructures.html#tut-listcomps
https://python.github.io/python-docs-zh-tw/tutorial/datastructures.html#dictionaries
Mapping Types --- dicthttps://python.github.io/python-docs-zh-tw/library/stdtypes.html#typesmapping
append()https://python.github.io/python-docs-zh-tw/library/stdtypes.html#list.append
extend()https://python.github.io/python-docs-zh-tw/library/stdtypes.html#list.extend
KeyErrorhttps://python.github.io/python-docs-zh-tw/library/exceptions.html#KeyError
get()https://python.github.io/python-docs-zh-tw/library/stdtypes.html#dict.get
inhttps://python.github.io/python-docs-zh-tw/reference/expressions.html#in
dict()https://python.github.io/python-docs-zh-tw/library/stdtypes.html#dict
https://python.github.io/python-docs-zh-tw/tutorial/datastructures.html#looping-techniques
items()https://python.github.io/python-docs-zh-tw/library/stdtypes.html#dict.items
enumerate()https://python.github.io/python-docs-zh-tw/library/functions.html#enumerate
zip()https://python.github.io/python-docs-zh-tw/library/functions.html#zip
reversed()https://python.github.io/python-docs-zh-tw/library/functions.html#reversed
sorted()https://python.github.io/python-docs-zh-tw/library/functions.html#sorted
set()https://python.github.io/python-docs-zh-tw/library/stdtypes.html#set
sorted()https://python.github.io/python-docs-zh-tw/library/functions.html#sorted
set()https://python.github.io/python-docs-zh-tw/library/stdtypes.html#set
https://python.github.io/python-docs-zh-tw/tutorial/datastructures.html#more-on-conditions
海象運算子https://python.github.io/python-docs-zh-tw/faq/design.html#why-can-t-i-use-an-assignment-in-an-expression
https://python.github.io/python-docs-zh-tw/tutorial/datastructures.html#comparing-sequences-and-other-types
TypeErrorhttps://python.github.io/python-docs-zh-tw/library/exceptions.html#TypeError
1https://python.github.io/python-docs-zh-tw/tutorial/datastructures.html#id1
目錄https://python.github.io/python-docs-zh-tw/contents.html
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
4. 深入了解流程控制https://python.github.io/python-docs-zh-tw/tutorial/controlflow.html
6. 模組 (Module)https://python.github.io/python-docs-zh-tw/tutorial/modules.html
回報錯誤https://python.github.io/python-docs-zh-tw/bugs.html
顯示原始碼 https://github.com/python/cpython/blob/main/Doc/tutorial/datastructures.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/modules.html
上一頁https://python.github.io/python-docs-zh-tw/tutorial/controlflow.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
5. 資料結構https://python.github.io/python-docs-zh-tw/tutorial/datastructures.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.