René's URL Explorer Experiment


Title: The Python Tutorial — Python 3.14.2 documentation

Open Graph Title: The Python Tutorial

Description: Python is an easy to learn, powerful programming language. It has efficient high-level data structures and a simple but effective approach to object-oriented programming. Python’s elegant syntax an...

Open Graph Description: Python is an easy to learn, powerful programming language. It has efficient high-level data structures and a simple but effective approach to object-oriented programming. Python’s elegant syntax an...

Opengraph URL: https://docs.python.org/3/tutorial/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_tutorial_index_4224eef5.png
og:image:altPython is an easy to learn, powerful programming language. It has efficient high-level data structures and a simple but effective approach to object-oriented programming. Python’s elegant syntax an...
twitter:cardsummary_large_image
theme-color#3776ab
readthedocs-addons-api-version1

Links:

https://www.python.org/
Changeloghttps://docs.python.org/3/whatsnew/changelog.html
1. Whetting Your Appetitehttps://docs.python.org/3/tutorial/appetite.html
Report a bughttps://docs.python.org/3/bugs.html
Show source https://github.com/python/cpython/blob/main/Doc/tutorial/index.rst?plain=1
indexhttps://docs.python.org/3/genindex.html
moduleshttps://docs.python.org/3/py-modindex.html
nexthttps://docs.python.org/3/tutorial/appetite.html
previoushttps://docs.python.org/3/whatsnew/changelog.html
Pythonhttps://www.python.org/
3.14.2 Documentationhttps://docs.python.org/3/index.html
The Python Tutorialhttps://docs.python.org/3/tutorial/index.html
https://docs.python.org/3/tutorial/index.html#the-python-tutorial
https://www.python.org/https://www.python.org/
The Python Standard Libraryhttps://docs.python.org/3/library/index.html#library-index
The Python Language Referencehttps://docs.python.org/3/reference/index.html#reference-index
Extending and Embedding the Python Interpreterhttps://docs.python.org/3/extending/index.html#extending-index
Python/C API Reference Manualhttps://docs.python.org/3/c-api/index.html#c-api-index
The Python Standard Libraryhttps://docs.python.org/3/library/index.html#library-index
Glossaryhttps://docs.python.org/3/glossary.html#glossary
1. Whetting Your Appetitehttps://docs.python.org/3/tutorial/appetite.html
2. Using the Python Interpreterhttps://docs.python.org/3/tutorial/interpreter.html
2.1. Invoking the Interpreterhttps://docs.python.org/3/tutorial/interpreter.html#invoking-the-interpreter
2.1.1. Argument Passinghttps://docs.python.org/3/tutorial/interpreter.html#argument-passing
2.1.2. Interactive Modehttps://docs.python.org/3/tutorial/interpreter.html#interactive-mode
2.2. The Interpreter and Its Environmenthttps://docs.python.org/3/tutorial/interpreter.html#the-interpreter-and-its-environment
2.2.1. Source Code Encodinghttps://docs.python.org/3/tutorial/interpreter.html#source-code-encoding
3. An Informal Introduction to Pythonhttps://docs.python.org/3/tutorial/introduction.html
3.1. Using Python as a Calculatorhttps://docs.python.org/3/tutorial/introduction.html#using-python-as-a-calculator
3.1.1. Numbershttps://docs.python.org/3/tutorial/introduction.html#numbers
3.1.2. Texthttps://docs.python.org/3/tutorial/introduction.html#text
3.1.3. Listshttps://docs.python.org/3/tutorial/introduction.html#lists
3.2. First Steps Towards Programminghttps://docs.python.org/3/tutorial/introduction.html#first-steps-towards-programming
4. More Control Flow Toolshttps://docs.python.org/3/tutorial/controlflow.html
4.1. if Statementshttps://docs.python.org/3/tutorial/controlflow.html#if-statements
4.2. for Statementshttps://docs.python.org/3/tutorial/controlflow.html#for-statements
4.3. The range() Functionhttps://docs.python.org/3/tutorial/controlflow.html#the-range-function
4.4. break and continue Statementshttps://docs.python.org/3/tutorial/controlflow.html#break-and-continue-statements
4.5. else Clauses on Loopshttps://docs.python.org/3/tutorial/controlflow.html#else-clauses-on-loops
4.6. pass Statementshttps://docs.python.org/3/tutorial/controlflow.html#pass-statements
4.7. match Statementshttps://docs.python.org/3/tutorial/controlflow.html#match-statements
4.8. Defining Functionshttps://docs.python.org/3/tutorial/controlflow.html#defining-functions
4.9. More on Defining Functionshttps://docs.python.org/3/tutorial/controlflow.html#more-on-defining-functions
4.9.1. Default Argument Valueshttps://docs.python.org/3/tutorial/controlflow.html#default-argument-values
4.9.2. Keyword Argumentshttps://docs.python.org/3/tutorial/controlflow.html#keyword-arguments
4.9.3. Special parametershttps://docs.python.org/3/tutorial/controlflow.html#special-parameters
4.9.3.1. Positional-or-Keyword Argumentshttps://docs.python.org/3/tutorial/controlflow.html#positional-or-keyword-arguments
4.9.3.2. Positional-Only Parametershttps://docs.python.org/3/tutorial/controlflow.html#positional-only-parameters
4.9.3.3. Keyword-Only Argumentshttps://docs.python.org/3/tutorial/controlflow.html#keyword-only-arguments
4.9.3.4. Function Exampleshttps://docs.python.org/3/tutorial/controlflow.html#function-examples
4.9.3.5. Recaphttps://docs.python.org/3/tutorial/controlflow.html#recap
4.9.4. Arbitrary Argument Listshttps://docs.python.org/3/tutorial/controlflow.html#arbitrary-argument-lists
4.9.5. Unpacking Argument Listshttps://docs.python.org/3/tutorial/controlflow.html#unpacking-argument-lists
4.9.6. Lambda Expressionshttps://docs.python.org/3/tutorial/controlflow.html#lambda-expressions
4.9.7. Documentation Stringshttps://docs.python.org/3/tutorial/controlflow.html#documentation-strings
4.9.8. Function Annotationshttps://docs.python.org/3/tutorial/controlflow.html#function-annotations
4.10. Intermezzo: Coding Stylehttps://docs.python.org/3/tutorial/controlflow.html#intermezzo-coding-style
5. Data Structureshttps://docs.python.org/3/tutorial/datastructures.html
5.1. More on Listshttps://docs.python.org/3/tutorial/datastructures.html#more-on-lists
5.1.1. Using Lists as Stackshttps://docs.python.org/3/tutorial/datastructures.html#using-lists-as-stacks
5.1.2. Using Lists as Queueshttps://docs.python.org/3/tutorial/datastructures.html#using-lists-as-queues
5.1.3. List Comprehensionshttps://docs.python.org/3/tutorial/datastructures.html#list-comprehensions
5.1.4. Nested List Comprehensionshttps://docs.python.org/3/tutorial/datastructures.html#nested-list-comprehensions
5.2. The del statementhttps://docs.python.org/3/tutorial/datastructures.html#the-del-statement
5.3. Tuples and Sequenceshttps://docs.python.org/3/tutorial/datastructures.html#tuples-and-sequences
5.4. Setshttps://docs.python.org/3/tutorial/datastructures.html#sets
5.5. Dictionarieshttps://docs.python.org/3/tutorial/datastructures.html#dictionaries
5.6. Looping Techniqueshttps://docs.python.org/3/tutorial/datastructures.html#looping-techniques
5.7. More on Conditionshttps://docs.python.org/3/tutorial/datastructures.html#more-on-conditions
5.8. Comparing Sequences and Other Typeshttps://docs.python.org/3/tutorial/datastructures.html#comparing-sequences-and-other-types
6. Moduleshttps://docs.python.org/3/tutorial/modules.html
6.1. More on Moduleshttps://docs.python.org/3/tutorial/modules.html#more-on-modules
6.1.1. Executing modules as scriptshttps://docs.python.org/3/tutorial/modules.html#executing-modules-as-scripts
6.1.2. The Module Search Pathhttps://docs.python.org/3/tutorial/modules.html#the-module-search-path
6.1.3. “Compiled” Python fileshttps://docs.python.org/3/tutorial/modules.html#compiled-python-files
6.2. Standard Moduleshttps://docs.python.org/3/tutorial/modules.html#standard-modules
6.3. The dir() Functionhttps://docs.python.org/3/tutorial/modules.html#the-dir-function
6.4. Packageshttps://docs.python.org/3/tutorial/modules.html#packages
6.4.1. Importing * From a Packagehttps://docs.python.org/3/tutorial/modules.html#importing-from-a-package
6.4.2. Intra-package Referenceshttps://docs.python.org/3/tutorial/modules.html#intra-package-references
6.4.3. Packages in Multiple Directorieshttps://docs.python.org/3/tutorial/modules.html#packages-in-multiple-directories
7. Input and Outputhttps://docs.python.org/3/tutorial/inputoutput.html
7.1. Fancier Output Formattinghttps://docs.python.org/3/tutorial/inputoutput.html#fancier-output-formatting
7.1.1. Formatted String Literalshttps://docs.python.org/3/tutorial/inputoutput.html#formatted-string-literals
7.1.2. The String format() Methodhttps://docs.python.org/3/tutorial/inputoutput.html#the-string-format-method
7.1.3. Manual String Formattinghttps://docs.python.org/3/tutorial/inputoutput.html#manual-string-formatting
7.1.4. Old string formattinghttps://docs.python.org/3/tutorial/inputoutput.html#old-string-formatting
7.2. Reading and Writing Fileshttps://docs.python.org/3/tutorial/inputoutput.html#reading-and-writing-files
7.2.1. Methods of File Objectshttps://docs.python.org/3/tutorial/inputoutput.html#methods-of-file-objects
7.2.2. Saving structured data with jsonhttps://docs.python.org/3/tutorial/inputoutput.html#saving-structured-data-with-json
8. Errors and Exceptionshttps://docs.python.org/3/tutorial/errors.html
8.1. Syntax Errorshttps://docs.python.org/3/tutorial/errors.html#syntax-errors
8.2. Exceptionshttps://docs.python.org/3/tutorial/errors.html#exceptions
8.3. Handling Exceptionshttps://docs.python.org/3/tutorial/errors.html#handling-exceptions
8.4. Raising Exceptionshttps://docs.python.org/3/tutorial/errors.html#raising-exceptions
8.5. Exception Chaininghttps://docs.python.org/3/tutorial/errors.html#exception-chaining
8.6. User-defined Exceptionshttps://docs.python.org/3/tutorial/errors.html#user-defined-exceptions
8.7. Defining Clean-up Actionshttps://docs.python.org/3/tutorial/errors.html#defining-clean-up-actions
8.8. Predefined Clean-up Actionshttps://docs.python.org/3/tutorial/errors.html#predefined-clean-up-actions
8.9. Raising and Handling Multiple Unrelated Exceptionshttps://docs.python.org/3/tutorial/errors.html#raising-and-handling-multiple-unrelated-exceptions
8.10. Enriching Exceptions with Noteshttps://docs.python.org/3/tutorial/errors.html#enriching-exceptions-with-notes
9. Classeshttps://docs.python.org/3/tutorial/classes.html
9.1. A Word About Names and Objectshttps://docs.python.org/3/tutorial/classes.html#a-word-about-names-and-objects
9.2. Python Scopes and Namespaceshttps://docs.python.org/3/tutorial/classes.html#python-scopes-and-namespaces
9.2.1. Scopes and Namespaces Examplehttps://docs.python.org/3/tutorial/classes.html#scopes-and-namespaces-example
9.3. A First Look at Classeshttps://docs.python.org/3/tutorial/classes.html#a-first-look-at-classes
9.3.1. Class Definition Syntaxhttps://docs.python.org/3/tutorial/classes.html#class-definition-syntax
9.3.2. Class Objectshttps://docs.python.org/3/tutorial/classes.html#class-objects
9.3.3. Instance Objectshttps://docs.python.org/3/tutorial/classes.html#instance-objects
9.3.4. Method Objectshttps://docs.python.org/3/tutorial/classes.html#method-objects
9.3.5. Class and Instance Variableshttps://docs.python.org/3/tutorial/classes.html#class-and-instance-variables
9.4. Random Remarkshttps://docs.python.org/3/tutorial/classes.html#random-remarks
9.5. Inheritancehttps://docs.python.org/3/tutorial/classes.html#inheritance
9.5.1. Multiple Inheritancehttps://docs.python.org/3/tutorial/classes.html#multiple-inheritance
9.6. Private Variableshttps://docs.python.org/3/tutorial/classes.html#private-variables
9.7. Odds and Endshttps://docs.python.org/3/tutorial/classes.html#odds-and-ends
9.8. Iteratorshttps://docs.python.org/3/tutorial/classes.html#iterators
9.9. Generatorshttps://docs.python.org/3/tutorial/classes.html#generators
9.10. Generator Expressionshttps://docs.python.org/3/tutorial/classes.html#generator-expressions
10. Brief Tour of the Standard Libraryhttps://docs.python.org/3/tutorial/stdlib.html
10.1. Operating System Interfacehttps://docs.python.org/3/tutorial/stdlib.html#operating-system-interface
10.2. File Wildcardshttps://docs.python.org/3/tutorial/stdlib.html#file-wildcards
10.3. Command Line Argumentshttps://docs.python.org/3/tutorial/stdlib.html#command-line-arguments
10.4. Error Output Redirection and Program Terminationhttps://docs.python.org/3/tutorial/stdlib.html#error-output-redirection-and-program-termination
10.5. String Pattern Matchinghttps://docs.python.org/3/tutorial/stdlib.html#string-pattern-matching
10.6. Mathematicshttps://docs.python.org/3/tutorial/stdlib.html#mathematics
10.7. Internet Accesshttps://docs.python.org/3/tutorial/stdlib.html#internet-access
10.8. Dates and Timeshttps://docs.python.org/3/tutorial/stdlib.html#dates-and-times
10.9. Data Compressionhttps://docs.python.org/3/tutorial/stdlib.html#data-compression
10.10. Performance Measurementhttps://docs.python.org/3/tutorial/stdlib.html#performance-measurement
10.11. Quality Controlhttps://docs.python.org/3/tutorial/stdlib.html#quality-control
10.12. Batteries Includedhttps://docs.python.org/3/tutorial/stdlib.html#batteries-included
11. Brief Tour of the Standard Library — Part IIhttps://docs.python.org/3/tutorial/stdlib2.html
11.1. Output Formattinghttps://docs.python.org/3/tutorial/stdlib2.html#output-formatting
11.2. Templatinghttps://docs.python.org/3/tutorial/stdlib2.html#templating
11.3. Working with Binary Data Record Layoutshttps://docs.python.org/3/tutorial/stdlib2.html#working-with-binary-data-record-layouts
11.4. Multi-threadinghttps://docs.python.org/3/tutorial/stdlib2.html#multi-threading
11.5. Logginghttps://docs.python.org/3/tutorial/stdlib2.html#logging
11.6. Weak Referenceshttps://docs.python.org/3/tutorial/stdlib2.html#weak-references
11.7. Tools for Working with Listshttps://docs.python.org/3/tutorial/stdlib2.html#tools-for-working-with-lists
11.8. Decimal Floating-Point Arithmetichttps://docs.python.org/3/tutorial/stdlib2.html#decimal-floating-point-arithmetic
12. Virtual Environments and Packageshttps://docs.python.org/3/tutorial/venv.html
12.1. Introductionhttps://docs.python.org/3/tutorial/venv.html#introduction
12.2. Creating Virtual Environmentshttps://docs.python.org/3/tutorial/venv.html#creating-virtual-environments
12.3. Managing Packages with piphttps://docs.python.org/3/tutorial/venv.html#managing-packages-with-pip
13. What Now?https://docs.python.org/3/tutorial/whatnow.html
14. Interactive Input Editing and History Substitutionhttps://docs.python.org/3/tutorial/interactive.html
14.1. Tab Completion and History Editinghttps://docs.python.org/3/tutorial/interactive.html#tab-completion-and-history-editing
14.2. Alternatives to the Interactive Interpreterhttps://docs.python.org/3/tutorial/interactive.html#alternatives-to-the-interactive-interpreter
15. Floating-Point Arithmetic: Issues and Limitationshttps://docs.python.org/3/tutorial/floatingpoint.html
15.1. Representation Errorhttps://docs.python.org/3/tutorial/floatingpoint.html#representation-error
16. Appendixhttps://docs.python.org/3/tutorial/appendix.html
16.1. Interactive Modehttps://docs.python.org/3/tutorial/appendix.html#interactive-mode
16.1.1. Error Handlinghttps://docs.python.org/3/tutorial/appendix.html#error-handling
16.1.2. Executable Python Scriptshttps://docs.python.org/3/tutorial/appendix.html#executable-python-scripts
16.1.3. The Interactive Startup Filehttps://docs.python.org/3/tutorial/appendix.html#the-interactive-startup-file
16.1.4. The Customization Moduleshttps://docs.python.org/3/tutorial/appendix.html#the-customization-modules
Changeloghttps://docs.python.org/3/whatsnew/changelog.html
1. Whetting Your Appetitehttps://docs.python.org/3/tutorial/appetite.html
Report a bughttps://docs.python.org/3/bugs.html
Show source https://github.com/python/cpython/blob/main/Doc/tutorial/index.rst?plain=1
indexhttps://docs.python.org/3/genindex.html
moduleshttps://docs.python.org/3/py-modindex.html
nexthttps://docs.python.org/3/tutorial/appetite.html
previoushttps://docs.python.org/3/whatsnew/changelog.html
Pythonhttps://www.python.org/
3.14.2 Documentationhttps://docs.python.org/3/index.html
The Python Tutorialhttps://docs.python.org/3/tutorial/index.html
Copyrighthttps://docs.python.org/3/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.