René's URL Explorer Experiment


Title: 5. Data Structures — Python 3.15.0a5 documentation

Open Graph Title: 5. Data Structures

Description: This chapter describes some things you’ve learned about already in more detail, and adds some new things as well. More on Lists: The list data type has some more methods. Here are all of the method...

Open Graph Description: This chapter describes some things you’ve learned about already in more detail, and adds some new things as well. More on Lists: The list data type has some more methods. Here are all of the method...

Opengraph URL: https://docs.python.org/3/tutorial/datastructures.html

direct link

Domain: docs.python.org

og:typewebsite
og:site_namePython documentation
og:image:width1146
og:image:height600
og:imagehttps://docs.python.org/3.15/_images/social_previews/summary_tutorial_datastructures_5322edaa.png
og:image:altThis chapter describes some things you’ve learned about already in more detail, and adds some new things as well. More on Lists: The list data type has some more methods. Here are all of the method...
twitter:cardsummary_large_image
theme-color#3776ab
readthedocs-addons-api-version1

Links:

https://www.python.org/
Table of Contentshttps://docs.python.org/dev/contents.html
5. Data Structureshttps://docs.python.org/dev/tutorial/datastructures.html
5.1. More on Listshttps://docs.python.org/dev/tutorial/datastructures.html#more-on-lists
5.1.1. Using Lists as Stackshttps://docs.python.org/dev/tutorial/datastructures.html#using-lists-as-stacks
5.1.2. Using Lists as Queueshttps://docs.python.org/dev/tutorial/datastructures.html#using-lists-as-queues
5.1.3. List Comprehensionshttps://docs.python.org/dev/tutorial/datastructures.html#list-comprehensions
5.1.4. Nested List Comprehensionshttps://docs.python.org/dev/tutorial/datastructures.html#nested-list-comprehensions
5.2. The del statementhttps://docs.python.org/dev/tutorial/datastructures.html#the-del-statement
5.3. Tuples and Sequenceshttps://docs.python.org/dev/tutorial/datastructures.html#tuples-and-sequences
5.4. Setshttps://docs.python.org/dev/tutorial/datastructures.html#sets
5.5. Dictionarieshttps://docs.python.org/dev/tutorial/datastructures.html#dictionaries
5.6. Looping Techniqueshttps://docs.python.org/dev/tutorial/datastructures.html#looping-techniques
5.7. More on Conditionshttps://docs.python.org/dev/tutorial/datastructures.html#more-on-conditions
5.8. Comparing Sequences and Other Typeshttps://docs.python.org/dev/tutorial/datastructures.html#comparing-sequences-and-other-types
4. More Control Flow Toolshttps://docs.python.org/dev/tutorial/controlflow.html
6. Moduleshttps://docs.python.org/dev/tutorial/modules.html
Report a bughttps://docs.python.org/dev/bugs.html
Show source https://github.com/python/cpython/blob/main/Doc/tutorial/datastructures.rst?plain=1
indexhttps://docs.python.org/dev/genindex.html
moduleshttps://docs.python.org/dev/py-modindex.html
nexthttps://docs.python.org/dev/tutorial/modules.html
previoushttps://docs.python.org/dev/tutorial/controlflow.html
Pythonhttps://www.python.org/
3.15.0a5 Documentationhttps://docs.python.org/dev/index.html
The Python Tutorialhttps://docs.python.org/dev/tutorial/index.html
5. Data Structureshttps://docs.python.org/dev/tutorial/datastructures.html
https://docs.python.org/dev/tutorial/datastructures.html#data-structures
https://docs.python.org/dev/tutorial/datastructures.html#more-on-lists
listhttps://docs.python.org/dev/library/stdtypes.html#typesseq-list
ValueErrorhttps://docs.python.org/dev/library/exceptions.html#ValueError
IndexErrorhttps://docs.python.org/dev/library/exceptions.html#IndexError
ValueErrorhttps://docs.python.org/dev/library/exceptions.html#ValueError
sorted()https://docs.python.org/dev/library/functions.html#sorted
[1]https://docs.python.org/dev/tutorial/datastructures.html#id2
https://docs.python.org/dev/tutorial/datastructures.html#using-lists-as-stacks
append()https://docs.python.org/dev/library/stdtypes.html#list.append
pop()https://docs.python.org/dev/library/stdtypes.html#list.pop
https://docs.python.org/dev/tutorial/datastructures.html#using-lists-as-queues
collections.dequehttps://docs.python.org/dev/library/collections.html#collections.deque
https://docs.python.org/dev/tutorial/datastructures.html#list-comprehensions
forhttps://docs.python.org/dev/reference/compound_stmts.html#for
ifhttps://docs.python.org/dev/reference/compound_stmts.html#if
https://docs.python.org/dev/tutorial/datastructures.html#nested-list-comprehensions
forhttps://docs.python.org/dev/reference/compound_stmts.html#for
zip()https://docs.python.org/dev/library/functions.html#zip
Unpacking Argument Listshttps://docs.python.org/dev/tutorial/controlflow.html#tut-unpacking-arguments
https://docs.python.org/dev/tutorial/datastructures.html#the-del-statement
delhttps://docs.python.org/dev/reference/simple_stmts.html#del
pop()https://docs.python.org/dev/library/stdtypes.html#list.pop
delhttps://docs.python.org/dev/reference/simple_stmts.html#del
delhttps://docs.python.org/dev/reference/simple_stmts.html#del
https://docs.python.org/dev/tutorial/datastructures.html#tuples-and-sequences
Sequence Types — list, tuple, rangehttps://docs.python.org/dev/library/stdtypes.html#typesseq
immutablehttps://docs.python.org/dev/glossary.html#term-immutable
namedtupleshttps://docs.python.org/dev/library/collections.html#collections.namedtuple
mutablehttps://docs.python.org/dev/glossary.html#term-mutable
https://docs.python.org/dev/tutorial/datastructures.html#sets
setshttps://docs.python.org/dev/library/stdtypes.html#types-set
set()https://docs.python.org/dev/library/stdtypes.html#set
list comprehensionshttps://docs.python.org/dev/tutorial/datastructures.html#tut-listcomps
https://docs.python.org/dev/tutorial/datastructures.html#dictionaries
Mapping Types — dicthttps://docs.python.org/dev/library/stdtypes.html#typesmapping
append()https://docs.python.org/dev/library/stdtypes.html#list.append
extend()https://docs.python.org/dev/library/stdtypes.html#list.extend
KeyErrorhttps://docs.python.org/dev/library/exceptions.html#KeyError
get()https://docs.python.org/dev/library/stdtypes.html#dict.get
inhttps://docs.python.org/dev/reference/expressions.html#in
dict()https://docs.python.org/dev/library/stdtypes.html#dict
https://docs.python.org/dev/tutorial/datastructures.html#looping-techniques
items()https://docs.python.org/dev/library/stdtypes.html#dict.items
enumerate()https://docs.python.org/dev/library/functions.html#enumerate
zip()https://docs.python.org/dev/library/functions.html#zip
reversed()https://docs.python.org/dev/library/functions.html#reversed
sorted()https://docs.python.org/dev/library/functions.html#sorted
set()https://docs.python.org/dev/library/stdtypes.html#set
sorted()https://docs.python.org/dev/library/functions.html#sorted
set()https://docs.python.org/dev/library/stdtypes.html#set
https://docs.python.org/dev/tutorial/datastructures.html#more-on-conditions
walrus operatorhttps://docs.python.org/dev/faq/design.html#why-can-t-i-use-an-assignment-in-an-expression
https://docs.python.org/dev/tutorial/datastructures.html#comparing-sequences-and-other-types
TypeErrorhttps://docs.python.org/dev/library/exceptions.html#TypeError
1https://docs.python.org/dev/tutorial/datastructures.html#id1
Table of Contentshttps://docs.python.org/dev/contents.html
5. Data Structureshttps://docs.python.org/dev/tutorial/datastructures.html
5.1. More on Listshttps://docs.python.org/dev/tutorial/datastructures.html#more-on-lists
5.1.1. Using Lists as Stackshttps://docs.python.org/dev/tutorial/datastructures.html#using-lists-as-stacks
5.1.2. Using Lists as Queueshttps://docs.python.org/dev/tutorial/datastructures.html#using-lists-as-queues
5.1.3. List Comprehensionshttps://docs.python.org/dev/tutorial/datastructures.html#list-comprehensions
5.1.4. Nested List Comprehensionshttps://docs.python.org/dev/tutorial/datastructures.html#nested-list-comprehensions
5.2. The del statementhttps://docs.python.org/dev/tutorial/datastructures.html#the-del-statement
5.3. Tuples and Sequenceshttps://docs.python.org/dev/tutorial/datastructures.html#tuples-and-sequences
5.4. Setshttps://docs.python.org/dev/tutorial/datastructures.html#sets
5.5. Dictionarieshttps://docs.python.org/dev/tutorial/datastructures.html#dictionaries
5.6. Looping Techniqueshttps://docs.python.org/dev/tutorial/datastructures.html#looping-techniques
5.7. More on Conditionshttps://docs.python.org/dev/tutorial/datastructures.html#more-on-conditions
5.8. Comparing Sequences and Other Typeshttps://docs.python.org/dev/tutorial/datastructures.html#comparing-sequences-and-other-types
4. More Control Flow Toolshttps://docs.python.org/dev/tutorial/controlflow.html
6. Moduleshttps://docs.python.org/dev/tutorial/modules.html
Report a bughttps://docs.python.org/dev/bugs.html
Show source https://github.com/python/cpython/blob/main/Doc/tutorial/datastructures.rst?plain=1
indexhttps://docs.python.org/dev/genindex.html
moduleshttps://docs.python.org/dev/py-modindex.html
nexthttps://docs.python.org/dev/tutorial/modules.html
previoushttps://docs.python.org/dev/tutorial/controlflow.html
Pythonhttps://www.python.org/
3.15.0a5 Documentationhttps://docs.python.org/dev/index.html
The Python Tutorialhttps://docs.python.org/dev/tutorial/index.html
5. Data Structureshttps://docs.python.org/dev/tutorial/datastructures.html
Copyrighthttps://docs.python.org/dev/copyright.html
History and Licensehttps://docs.python.org/license.html
Please donate.https://www.python.org/psf/donations/
Found a bughttps://docs.python.org/bugs.html
Sphinxhttps://www.sphinx-doc.org/

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


URLs of crawlers that visited me.