René's URL Explorer Experiment
go
Title:
5. Data Structures — Python 3.5.10 documentation
direct link
Domain:
docs.python.org
None
text/html; charset=utf-8
Links
:
Python documentation for the current stable release
https://docs.python.org/3/tutorial/datastructures.html
index
https://docs.python.org/3.5/genindex.html
modules
https://docs.python.org/3.5/py-modindex.html
next
https://docs.python.org/3.5/tutorial/modules.html
previous
https://docs.python.org/3.5/tutorial/controlflow.html
Python
https://www.python.org/
3.5.10 Documentation
https://docs.python.org/3.5/index.html
The Python Tutorial
https://docs.python.org/3.5/tutorial/index.html
¶
https://docs.python.org/3.5/tutorial/datastructures.html#data-structures
¶
https://docs.python.org/3.5/tutorial/datastructures.html#more-on-lists
ValueError
https://docs.python.org/3.5/library/exceptions.html#ValueError
sorted()
https://docs.python.org/3.5/library/functions.html#sorted
[1]
https://docs.python.org/3.5/tutorial/datastructures.html#id3
¶
https://docs.python.org/3.5/tutorial/datastructures.html#using-lists-as-stacks
¶
https://docs.python.org/3.5/tutorial/datastructures.html#using-lists-as-queues
collections.deque
https://docs.python.org/3.5/library/collections.html#collections.deque
¶
https://docs.python.org/3.5/tutorial/datastructures.html#list-comprehensions
for
https://docs.python.org/3.5/reference/compound_stmts.html#for
for
https://docs.python.org/3.5/reference/compound_stmts.html#for
if
https://docs.python.org/3.5/reference/compound_stmts.html#if
for
https://docs.python.org/3.5/reference/compound_stmts.html#for
if
https://docs.python.org/3.5/reference/compound_stmts.html#if
for
https://docs.python.org/3.5/reference/compound_stmts.html#for
if
https://docs.python.org/3.5/reference/compound_stmts.html#if
¶
https://docs.python.org/3.5/tutorial/datastructures.html#nested-list-comprehensions
for
https://docs.python.org/3.5/reference/compound_stmts.html#for
zip()
https://docs.python.org/3.5/library/functions.html#zip
Unpacking Argument Lists
https://docs.python.org/3.5/tutorial/controlflow.html#tut-unpacking-arguments
del
https://docs.python.org/3.5/reference/simple_stmts.html#del
¶
https://docs.python.org/3.5/tutorial/datastructures.html#the-del-statement
del
https://docs.python.org/3.5/reference/simple_stmts.html#del
del
https://docs.python.org/3.5/reference/simple_stmts.html#del
del
https://docs.python.org/3.5/reference/simple_stmts.html#del
del
https://docs.python.org/3.5/reference/simple_stmts.html#del
¶
https://docs.python.org/3.5/tutorial/datastructures.html#tuples-and-sequences
Sequence Types — list, tuple, range
https://docs.python.org/3.5/library/stdtypes.html#typesseq
immutable
https://docs.python.org/3.5/glossary.html#term-immutable
namedtuples
https://docs.python.org/3.5/library/collections.html#collections.namedtuple
mutable
https://docs.python.org/3.5/glossary.html#term-mutable
¶
https://docs.python.org/3.5/tutorial/datastructures.html#sets
set()
https://docs.python.org/3.5/library/stdtypes.html#set
list comprehensions
https://docs.python.org/3.5/tutorial/datastructures.html#tut-listcomps
¶
https://docs.python.org/3.5/tutorial/datastructures.html#dictionaries
Mapping Types — dict
https://docs.python.org/3.5/library/stdtypes.html#typesmapping
[2]
https://docs.python.org/3.5/tutorial/datastructures.html#id4
in
https://docs.python.org/3.5/reference/expressions.html#in
dict()
https://docs.python.org/3.5/library/stdtypes.html#dict
¶
https://docs.python.org/3.5/tutorial/datastructures.html#looping-techniques
enumerate()
https://docs.python.org/3.5/library/functions.html#enumerate
zip()
https://docs.python.org/3.5/library/functions.html#zip
reversed()
https://docs.python.org/3.5/library/functions.html#reversed
sorted()
https://docs.python.org/3.5/library/functions.html#sorted
¶
https://docs.python.org/3.5/tutorial/datastructures.html#more-on-conditions
¶
https://docs.python.org/3.5/tutorial/datastructures.html#comparing-sequences-and-other-types
TypeError
https://docs.python.org/3.5/library/exceptions.html#TypeError
[1]
https://docs.python.org/3.5/tutorial/datastructures.html#id1
[2]
https://docs.python.org/3.5/tutorial/datastructures.html#id2
Table of Contents
https://docs.python.org/3.5/contents.html
5. Data Structures
https://docs.python.org/3.5/tutorial/datastructures.html
5.1. More on Lists
https://docs.python.org/3.5/tutorial/datastructures.html#more-on-lists
5.1.1. Using Lists as Stacks
https://docs.python.org/3.5/tutorial/datastructures.html#using-lists-as-stacks
5.1.2. Using Lists as Queues
https://docs.python.org/3.5/tutorial/datastructures.html#using-lists-as-queues
5.1.3. List Comprehensions
https://docs.python.org/3.5/tutorial/datastructures.html#list-comprehensions
5.1.4. Nested List Comprehensions
https://docs.python.org/3.5/tutorial/datastructures.html#nested-list-comprehensions
5.2. The del statement
https://docs.python.org/3.5/tutorial/datastructures.html#the-del-statement
5.3. Tuples and Sequences
https://docs.python.org/3.5/tutorial/datastructures.html#tuples-and-sequences
5.4. Sets
https://docs.python.org/3.5/tutorial/datastructures.html#sets
5.5. Dictionaries
https://docs.python.org/3.5/tutorial/datastructures.html#dictionaries
5.6. Looping Techniques
https://docs.python.org/3.5/tutorial/datastructures.html#looping-techniques
5.7. More on Conditions
https://docs.python.org/3.5/tutorial/datastructures.html#more-on-conditions
5.8. Comparing Sequences and Other Types
https://docs.python.org/3.5/tutorial/datastructures.html#comparing-sequences-and-other-types
4. More Control Flow Tools
https://docs.python.org/3.5/tutorial/controlflow.html
6. Modules
https://docs.python.org/3.5/tutorial/modules.html
Report a Bug
https://docs.python.org/3.5/bugs.html
Show Source
https://github.com/python/cpython/blob/3.5/Doc/tutorial/datastructures.rst
index
https://docs.python.org/3.5/genindex.html
modules
https://docs.python.org/3.5/py-modindex.html
next
https://docs.python.org/3.5/tutorial/modules.html
previous
https://docs.python.org/3.5/tutorial/controlflow.html
Python
https://www.python.org/
3.5.10 Documentation
https://docs.python.org/3.5/index.html
The Python Tutorial
https://docs.python.org/3.5/tutorial/index.html
Copyright
https://docs.python.org/3.5/copyright.html
Please donate.
https://www.python.org/psf/donations/
Found a bug
https://docs.python.org/3.5/bugs.html
Sphinx
http://sphinx.pocoo.org/
URLs of
crawlers that visited me
.