René's URL Explorer Experiment


Title: The Python Language Reference — Python 3.14.2 documentation

Open Graph Title: The Python Language Reference

Description: This reference manual describes the syntax and “core semantics” of the language. It is terse, but attempts to be exact and complete. The semantics of non-essential built-in object types and of the ...

Open Graph Description: This reference manual describes the syntax and “core semantics” of the language. It is terse, but attempts to be exact and complete. The semantics of non-essential built-in object types and of the ...

Opengraph URL: https://docs.python.org/3/reference/index.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.14/_images/social_previews/summary_reference_index_bc89d91b.png
og:image:altThis reference manual describes the syntax and “core semantics” of the language. It is terse, but attempts to be exact and complete. The semantics of non-essential built-in object types and of the ...
twitter:cardsummary_large_image
theme-color#3776ab
readthedocs-addons-api-version1

Links:

https://www.python.org/
8. Editors and IDEshttps://docs.python.org/using/editors.html
1. Introductionhttps://docs.python.org/reference/introduction.html
Report a bughttps://docs.python.org/bugs.html
Show source https://github.com/python/cpython/blob/main/Doc/reference/index.rst?plain=1
indexhttps://docs.python.org/genindex.html
moduleshttps://docs.python.org/py-modindex.html
nexthttps://docs.python.org/reference/introduction.html
previoushttps://docs.python.org/using/editors.html
Pythonhttps://www.python.org/
3.14.2 Documentationhttps://docs.python.org/index.html
The Python Language Referencehttps://docs.python.org/reference/index.html
https://docs.python.org/reference/index.html#the-python-language-reference
The Python Standard Libraryhttps://docs.python.org/library/index.html#library-index
The Python Tutorialhttps://docs.python.org/tutorial/index.html#tutorial-index
Extending and Embedding the Python Interpreterhttps://docs.python.org/extending/index.html#extending-index
Python/C API Reference Manualhttps://docs.python.org/c-api/index.html#c-api-index
1. Introductionhttps://docs.python.org/reference/introduction.html
1.1. Alternate Implementationshttps://docs.python.org/reference/introduction.html#alternate-implementations
1.2. Notationhttps://docs.python.org/reference/introduction.html#notation
2. Lexical analysishttps://docs.python.org/reference/lexical_analysis.html
2.1. Line structurehttps://docs.python.org/reference/lexical_analysis.html#line-structure
2.2. Other tokenshttps://docs.python.org/reference/lexical_analysis.html#other-tokens
2.3. Names (identifiers and keywords)https://docs.python.org/reference/lexical_analysis.html#names-identifiers-and-keywords
2.4. Literalshttps://docs.python.org/reference/lexical_analysis.html#literals
2.5. String and Bytes literalshttps://docs.python.org/reference/lexical_analysis.html#string-and-bytes-literals
2.6. Numeric literalshttps://docs.python.org/reference/lexical_analysis.html#numeric-literals
2.7. Operators and delimitershttps://docs.python.org/reference/lexical_analysis.html#operators-and-delimiters
3. Data modelhttps://docs.python.org/reference/datamodel.html
3.1. Objects, values and typeshttps://docs.python.org/reference/datamodel.html#objects-values-and-types
3.2. The standard type hierarchyhttps://docs.python.org/reference/datamodel.html#the-standard-type-hierarchy
3.3. Special method nameshttps://docs.python.org/reference/datamodel.html#special-method-names
3.4. Coroutineshttps://docs.python.org/reference/datamodel.html#coroutines
4. Execution modelhttps://docs.python.org/reference/executionmodel.html
4.1. Structure of a programhttps://docs.python.org/reference/executionmodel.html#structure-of-a-program
4.2. Naming and bindinghttps://docs.python.org/reference/executionmodel.html#naming-and-binding
4.3. Exceptionshttps://docs.python.org/reference/executionmodel.html#exceptions
4.4. Runtime Componentshttps://docs.python.org/reference/executionmodel.html#runtime-components
5. The import systemhttps://docs.python.org/reference/import.html
5.1. importlibhttps://docs.python.org/reference/import.html#importlib
5.2. Packageshttps://docs.python.org/reference/import.html#packages
5.3. Searchinghttps://docs.python.org/reference/import.html#searching
5.4. Loadinghttps://docs.python.org/reference/import.html#loading
5.5. The Path Based Finderhttps://docs.python.org/reference/import.html#the-path-based-finder
5.6. Replacing the standard import systemhttps://docs.python.org/reference/import.html#replacing-the-standard-import-system
5.7. Package Relative Importshttps://docs.python.org/reference/import.html#package-relative-imports
5.8. Special considerations for __main__https://docs.python.org/reference/import.html#special-considerations-for-main
5.9. Referenceshttps://docs.python.org/reference/import.html#references
6. Expressionshttps://docs.python.org/reference/expressions.html
6.1. Arithmetic conversionshttps://docs.python.org/reference/expressions.html#arithmetic-conversions
6.2. Atomshttps://docs.python.org/reference/expressions.html#atoms
6.3. Primarieshttps://docs.python.org/reference/expressions.html#primaries
6.4. Await expressionhttps://docs.python.org/reference/expressions.html#await-expression
6.5. The power operatorhttps://docs.python.org/reference/expressions.html#the-power-operator
6.6. Unary arithmetic and bitwise operationshttps://docs.python.org/reference/expressions.html#unary-arithmetic-and-bitwise-operations
6.7. Binary arithmetic operationshttps://docs.python.org/reference/expressions.html#binary-arithmetic-operations
6.8. Shifting operationshttps://docs.python.org/reference/expressions.html#shifting-operations
6.9. Binary bitwise operationshttps://docs.python.org/reference/expressions.html#binary-bitwise-operations
6.10. Comparisonshttps://docs.python.org/reference/expressions.html#comparisons
6.11. Boolean operationshttps://docs.python.org/reference/expressions.html#boolean-operations
6.12. Assignment expressionshttps://docs.python.org/reference/expressions.html#assignment-expressions
6.13. Conditional expressionshttps://docs.python.org/reference/expressions.html#conditional-expressions
6.14. Lambdashttps://docs.python.org/reference/expressions.html#lambda
6.15. Expression listshttps://docs.python.org/reference/expressions.html#expression-lists
6.16. Evaluation orderhttps://docs.python.org/reference/expressions.html#evaluation-order
6.17. Operator precedencehttps://docs.python.org/reference/expressions.html#operator-precedence
7. Simple statementshttps://docs.python.org/reference/simple_stmts.html
7.1. Expression statementshttps://docs.python.org/reference/simple_stmts.html#expression-statements
7.2. Assignment statementshttps://docs.python.org/reference/simple_stmts.html#assignment-statements
7.3. The assert statementhttps://docs.python.org/reference/simple_stmts.html#the-assert-statement
7.4. The pass statementhttps://docs.python.org/reference/simple_stmts.html#the-pass-statement
7.5. The del statementhttps://docs.python.org/reference/simple_stmts.html#the-del-statement
7.6. The return statementhttps://docs.python.org/reference/simple_stmts.html#the-return-statement
7.7. The yield statementhttps://docs.python.org/reference/simple_stmts.html#the-yield-statement
7.8. The raise statementhttps://docs.python.org/reference/simple_stmts.html#the-raise-statement
7.9. The break statementhttps://docs.python.org/reference/simple_stmts.html#the-break-statement
7.10. The continue statementhttps://docs.python.org/reference/simple_stmts.html#the-continue-statement
7.11. The import statementhttps://docs.python.org/reference/simple_stmts.html#the-import-statement
7.12. The global statementhttps://docs.python.org/reference/simple_stmts.html#the-global-statement
7.13. The nonlocal statementhttps://docs.python.org/reference/simple_stmts.html#the-nonlocal-statement
7.14. The type statementhttps://docs.python.org/reference/simple_stmts.html#the-type-statement
8. Compound statementshttps://docs.python.org/reference/compound_stmts.html
8.1. The if statementhttps://docs.python.org/reference/compound_stmts.html#the-if-statement
8.2. The while statementhttps://docs.python.org/reference/compound_stmts.html#the-while-statement
8.3. The for statementhttps://docs.python.org/reference/compound_stmts.html#the-for-statement
8.4. The try statementhttps://docs.python.org/reference/compound_stmts.html#the-try-statement
8.5. The with statementhttps://docs.python.org/reference/compound_stmts.html#the-with-statement
8.6. The match statementhttps://docs.python.org/reference/compound_stmts.html#the-match-statement
8.7. Function definitionshttps://docs.python.org/reference/compound_stmts.html#function-definitions
8.8. Class definitionshttps://docs.python.org/reference/compound_stmts.html#class-definitions
8.9. Coroutineshttps://docs.python.org/reference/compound_stmts.html#coroutines
8.10. Type parameter listshttps://docs.python.org/reference/compound_stmts.html#type-parameter-lists
8.11. Annotationshttps://docs.python.org/reference/compound_stmts.html#annotations
9. Top-level componentshttps://docs.python.org/reference/toplevel_components.html
9.1. Complete Python programshttps://docs.python.org/reference/toplevel_components.html#complete-python-programs
9.2. File inputhttps://docs.python.org/reference/toplevel_components.html#file-input
9.3. Interactive inputhttps://docs.python.org/reference/toplevel_components.html#interactive-input
9.4. Expression inputhttps://docs.python.org/reference/toplevel_components.html#expression-input
10. Full Grammar specificationhttps://docs.python.org/reference/grammar.html
8. Editors and IDEshttps://docs.python.org/using/editors.html
1. Introductionhttps://docs.python.org/reference/introduction.html
Report a bughttps://docs.python.org/bugs.html
Show source https://github.com/python/cpython/blob/main/Doc/reference/index.rst?plain=1
indexhttps://docs.python.org/genindex.html
moduleshttps://docs.python.org/py-modindex.html
nexthttps://docs.python.org/reference/introduction.html
previoushttps://docs.python.org/using/editors.html
Pythonhttps://www.python.org/
3.14.2 Documentationhttps://docs.python.org/index.html
The Python Language Referencehttps://docs.python.org/reference/index.html
Copyrighthttps://docs.python.org/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.