René's URL Explorer Experiment


Title: The Python Tutorial — Python 2.7.18 documentation

direct link

Domain: docs.python.org

Links:

no longer supportedhttps://devguide.python.org/devcycle/#end-of-life-branches
Python documentation for the current stable releasehttps://docs.python.org/3/tutorial/index.html
indexhttps://docs.python.org/2/genindex.html
moduleshttps://docs.python.org/2/py-modindex.html
nexthttps://docs.python.org/2/tutorial/appetite.html
previoushttps://docs.python.org/2/whatsnew/2.0.html
Pythonhttps://www.python.org/
Python 2.7.18 documentationhttps://docs.python.org/2/index.html
https://docs.python.org/2/tutorial/index.html#the-python-tutorial
https://www.python.org/https://www.python.org/
The Python Standard Libraryhttps://docs.python.org/2/library/index.html#library-index
The Python Language Referencehttps://docs.python.org/2/reference/index.html#reference-index
Extending and Embedding the Python Interpreterhttps://docs.python.org/2/extending/index.html#extending-index
Python/C API Reference Manualhttps://docs.python.org/2/c-api/index.html#c-api-index
The Python Standard Libraryhttps://docs.python.org/2/library/index.html#library-index
Glossaryhttps://docs.python.org/2/glossary.html#glossary
1. Whetting Your Appetitehttps://docs.python.org/2/tutorial/appetite.html
2. Using the Python Interpreterhttps://docs.python.org/2/tutorial/interpreter.html
2.1. Invoking the Interpreterhttps://docs.python.org/2/tutorial/interpreter.html#invoking-the-interpreter
2.1.1. Argument Passinghttps://docs.python.org/2/tutorial/interpreter.html#argument-passing
2.1.2. Interactive Modehttps://docs.python.org/2/tutorial/interpreter.html#interactive-mode
2.2. The Interpreter and Its Environmenthttps://docs.python.org/2/tutorial/interpreter.html#the-interpreter-and-its-environment
2.2.1. Source Code Encodinghttps://docs.python.org/2/tutorial/interpreter.html#source-code-encoding
3. An Informal Introduction to Pythonhttps://docs.python.org/2/tutorial/introduction.html
3.1. Using Python as a Calculatorhttps://docs.python.org/2/tutorial/introduction.html#using-python-as-a-calculator
3.1.1. Numbershttps://docs.python.org/2/tutorial/introduction.html#numbers
3.1.2. Stringshttps://docs.python.org/2/tutorial/introduction.html#strings
3.1.3. Unicode Stringshttps://docs.python.org/2/tutorial/introduction.html#unicode-strings
3.1.4. Listshttps://docs.python.org/2/tutorial/introduction.html#lists
3.2. First Steps Towards Programminghttps://docs.python.org/2/tutorial/introduction.html#first-steps-towards-programming
4. More Control Flow Toolshttps://docs.python.org/2/tutorial/controlflow.html
4.1. if Statementshttps://docs.python.org/2/tutorial/controlflow.html#if-statements
4.2. for Statementshttps://docs.python.org/2/tutorial/controlflow.html#for-statements
4.3. The range() Functionhttps://docs.python.org/2/tutorial/controlflow.html#the-range-function
4.4. break and continue Statements, and else Clauses on Loopshttps://docs.python.org/2/tutorial/controlflow.html#break-and-continue-statements-and-else-clauses-on-loops
4.5. pass Statementshttps://docs.python.org/2/tutorial/controlflow.html#pass-statements
4.6. Defining Functionshttps://docs.python.org/2/tutorial/controlflow.html#defining-functions
4.7. More on Defining Functionshttps://docs.python.org/2/tutorial/controlflow.html#more-on-defining-functions
4.7.1. Default Argument Valueshttps://docs.python.org/2/tutorial/controlflow.html#default-argument-values
4.7.2. Keyword Argumentshttps://docs.python.org/2/tutorial/controlflow.html#keyword-arguments
4.7.3. Arbitrary Argument Listshttps://docs.python.org/2/tutorial/controlflow.html#arbitrary-argument-lists
4.7.4. Unpacking Argument Listshttps://docs.python.org/2/tutorial/controlflow.html#unpacking-argument-lists
4.7.5. Lambda Expressionshttps://docs.python.org/2/tutorial/controlflow.html#lambda-expressions
4.7.6. Documentation Stringshttps://docs.python.org/2/tutorial/controlflow.html#documentation-strings
4.8. Intermezzo: Coding Stylehttps://docs.python.org/2/tutorial/controlflow.html#intermezzo-coding-style
5. Data Structureshttps://docs.python.org/2/tutorial/datastructures.html
5.1. More on Listshttps://docs.python.org/2/tutorial/datastructures.html#more-on-lists
5.1.1. Using Lists as Stackshttps://docs.python.org/2/tutorial/datastructures.html#using-lists-as-stacks
5.1.2. Using Lists as Queueshttps://docs.python.org/2/tutorial/datastructures.html#using-lists-as-queues
5.1.3. Functional Programming Toolshttps://docs.python.org/2/tutorial/datastructures.html#functional-programming-tools
5.1.4. List Comprehensionshttps://docs.python.org/2/tutorial/datastructures.html#list-comprehensions
5.1.4.1. Nested List Comprehensionshttps://docs.python.org/2/tutorial/datastructures.html#nested-list-comprehensions
5.2. The del statementhttps://docs.python.org/2/tutorial/datastructures.html#the-del-statement
5.3. Tuples and Sequenceshttps://docs.python.org/2/tutorial/datastructures.html#tuples-and-sequences
5.4. Setshttps://docs.python.org/2/tutorial/datastructures.html#sets
5.5. Dictionarieshttps://docs.python.org/2/tutorial/datastructures.html#dictionaries
5.6. Looping Techniqueshttps://docs.python.org/2/tutorial/datastructures.html#looping-techniques
5.7. More on Conditionshttps://docs.python.org/2/tutorial/datastructures.html#more-on-conditions
5.8. Comparing Sequences and Other Typeshttps://docs.python.org/2/tutorial/datastructures.html#comparing-sequences-and-other-types
6. Moduleshttps://docs.python.org/2/tutorial/modules.html
6.1. More on Moduleshttps://docs.python.org/2/tutorial/modules.html#more-on-modules
6.1.1. Executing modules as scriptshttps://docs.python.org/2/tutorial/modules.html#executing-modules-as-scripts
6.1.2. The Module Search Pathhttps://docs.python.org/2/tutorial/modules.html#the-module-search-path
6.1.3. “Compiled” Python fileshttps://docs.python.org/2/tutorial/modules.html#compiled-python-files
6.2. Standard Moduleshttps://docs.python.org/2/tutorial/modules.html#standard-modules
6.3. The dir() Functionhttps://docs.python.org/2/tutorial/modules.html#the-dir-function
6.4. Packageshttps://docs.python.org/2/tutorial/modules.html#packages
6.4.1. Importing * From a Packagehttps://docs.python.org/2/tutorial/modules.html#importing-from-a-package
6.4.2. Intra-package Referenceshttps://docs.python.org/2/tutorial/modules.html#intra-package-references
6.4.3. Packages in Multiple Directorieshttps://docs.python.org/2/tutorial/modules.html#packages-in-multiple-directories
7. Input and Outputhttps://docs.python.org/2/tutorial/inputoutput.html
7.1. Fancier Output Formattinghttps://docs.python.org/2/tutorial/inputoutput.html#fancier-output-formatting
7.1.1. Old string formattinghttps://docs.python.org/2/tutorial/inputoutput.html#old-string-formatting
7.2. Reading and Writing Fileshttps://docs.python.org/2/tutorial/inputoutput.html#reading-and-writing-files
7.2.1. Methods of File Objectshttps://docs.python.org/2/tutorial/inputoutput.html#methods-of-file-objects
7.2.2. Saving structured data with jsonhttps://docs.python.org/2/tutorial/inputoutput.html#saving-structured-data-with-json
8. Errors and Exceptionshttps://docs.python.org/2/tutorial/errors.html
8.1. Syntax Errorshttps://docs.python.org/2/tutorial/errors.html#syntax-errors
8.2. Exceptionshttps://docs.python.org/2/tutorial/errors.html#exceptions
8.3. Handling Exceptionshttps://docs.python.org/2/tutorial/errors.html#handling-exceptions
8.4. Raising Exceptionshttps://docs.python.org/2/tutorial/errors.html#raising-exceptions
8.5. User-defined Exceptionshttps://docs.python.org/2/tutorial/errors.html#user-defined-exceptions
8.6. Defining Clean-up Actionshttps://docs.python.org/2/tutorial/errors.html#defining-clean-up-actions
8.7. Predefined Clean-up Actionshttps://docs.python.org/2/tutorial/errors.html#predefined-clean-up-actions
9. Classeshttps://docs.python.org/2/tutorial/classes.html
9.1. A Word About Names and Objectshttps://docs.python.org/2/tutorial/classes.html#a-word-about-names-and-objects
9.2. Python Scopes and Namespaceshttps://docs.python.org/2/tutorial/classes.html#python-scopes-and-namespaces
9.3. A First Look at Classeshttps://docs.python.org/2/tutorial/classes.html#a-first-look-at-classes
9.3.1. Class Definition Syntaxhttps://docs.python.org/2/tutorial/classes.html#class-definition-syntax
9.3.2. Class Objectshttps://docs.python.org/2/tutorial/classes.html#class-objects
9.3.3. Instance Objectshttps://docs.python.org/2/tutorial/classes.html#instance-objects
9.3.4. Method Objectshttps://docs.python.org/2/tutorial/classes.html#method-objects
9.3.5. Class and Instance Variableshttps://docs.python.org/2/tutorial/classes.html#class-and-instance-variables
9.4. Random Remarkshttps://docs.python.org/2/tutorial/classes.html#random-remarks
9.5. Inheritancehttps://docs.python.org/2/tutorial/classes.html#inheritance
9.5.1. Multiple Inheritancehttps://docs.python.org/2/tutorial/classes.html#multiple-inheritance
9.6. Private Variables and Class-local Referenceshttps://docs.python.org/2/tutorial/classes.html#private-variables-and-class-local-references
9.7. Odds and Endshttps://docs.python.org/2/tutorial/classes.html#odds-and-ends
9.8. Exceptions Are Classes Toohttps://docs.python.org/2/tutorial/classes.html#exceptions-are-classes-too
9.9. Iteratorshttps://docs.python.org/2/tutorial/classes.html#iterators
9.10. Generatorshttps://docs.python.org/2/tutorial/classes.html#generators
9.11. Generator Expressionshttps://docs.python.org/2/tutorial/classes.html#generator-expressions
10. Brief Tour of the Standard Libraryhttps://docs.python.org/2/tutorial/stdlib.html
10.1. Operating System Interfacehttps://docs.python.org/2/tutorial/stdlib.html#operating-system-interface
10.2. File Wildcardshttps://docs.python.org/2/tutorial/stdlib.html#file-wildcards
10.3. Command Line Argumentshttps://docs.python.org/2/tutorial/stdlib.html#command-line-arguments
10.4. Error Output Redirection and Program Terminationhttps://docs.python.org/2/tutorial/stdlib.html#error-output-redirection-and-program-termination
10.5. String Pattern Matchinghttps://docs.python.org/2/tutorial/stdlib.html#string-pattern-matching
10.6. Mathematicshttps://docs.python.org/2/tutorial/stdlib.html#mathematics
10.7. Internet Accesshttps://docs.python.org/2/tutorial/stdlib.html#internet-access
10.8. Dates and Timeshttps://docs.python.org/2/tutorial/stdlib.html#dates-and-times
10.9. Data Compressionhttps://docs.python.org/2/tutorial/stdlib.html#data-compression
10.10. Performance Measurementhttps://docs.python.org/2/tutorial/stdlib.html#performance-measurement
10.11. Quality Controlhttps://docs.python.org/2/tutorial/stdlib.html#quality-control
10.12. Batteries Includedhttps://docs.python.org/2/tutorial/stdlib.html#batteries-included
11. Brief Tour of the Standard Library — Part IIhttps://docs.python.org/2/tutorial/stdlib2.html
11.1. Output Formattinghttps://docs.python.org/2/tutorial/stdlib2.html#output-formatting
11.2. Templatinghttps://docs.python.org/2/tutorial/stdlib2.html#templating
11.3. Working with Binary Data Record Layoutshttps://docs.python.org/2/tutorial/stdlib2.html#working-with-binary-data-record-layouts
11.4. Multi-threadinghttps://docs.python.org/2/tutorial/stdlib2.html#multi-threading
11.5. Logginghttps://docs.python.org/2/tutorial/stdlib2.html#logging
11.6. Weak Referenceshttps://docs.python.org/2/tutorial/stdlib2.html#weak-references
11.7. Tools for Working with Listshttps://docs.python.org/2/tutorial/stdlib2.html#tools-for-working-with-lists
11.8. Decimal Floating Point Arithmetichttps://docs.python.org/2/tutorial/stdlib2.html#decimal-floating-point-arithmetic
12. What Now?https://docs.python.org/2/tutorial/whatnow.html
13. Interactive Input Editing and History Substitutionhttps://docs.python.org/2/tutorial/interactive.html
13.1. Line Editinghttps://docs.python.org/2/tutorial/interactive.html#line-editing
13.2. History Substitutionhttps://docs.python.org/2/tutorial/interactive.html#history-substitution
13.3. Key Bindingshttps://docs.python.org/2/tutorial/interactive.html#key-bindings
13.4. Alternatives to the Interactive Interpreterhttps://docs.python.org/2/tutorial/interactive.html#alternatives-to-the-interactive-interpreter
14. Floating Point Arithmetic: Issues and Limitationshttps://docs.python.org/2/tutorial/floatingpoint.html
14.1. Representation Errorhttps://docs.python.org/2/tutorial/floatingpoint.html#representation-error
15. Appendixhttps://docs.python.org/2/tutorial/appendix.html
15.1. Interactive Modehttps://docs.python.org/2/tutorial/appendix.html#interactive-mode
15.1.1. Error Handlinghttps://docs.python.org/2/tutorial/appendix.html#error-handling
15.1.2. Executable Python Scriptshttps://docs.python.org/2/tutorial/appendix.html#executable-python-scripts
15.1.3. The Interactive Startup Filehttps://docs.python.org/2/tutorial/appendix.html#the-interactive-startup-file
15.1.4. The Customization Moduleshttps://docs.python.org/2/tutorial/appendix.html#the-customization-modules
What’s New in Python 2.0https://docs.python.org/2/whatsnew/2.0.html
1. Whetting Your Appetitehttps://docs.python.org/2/tutorial/appetite.html
Show Sourcehttps://docs.python.org/2/_sources/tutorial/index.rst.txt
indexhttps://docs.python.org/2/genindex.html
moduleshttps://docs.python.org/2/py-modindex.html
nexthttps://docs.python.org/2/tutorial/appetite.html
previoushttps://docs.python.org/2/whatsnew/2.0.html
Pythonhttps://www.python.org/
Python 2.7.18 documentationhttps://docs.python.org/2/index.html
Copyrighthttps://docs.python.org/2/copyright.html
Please donate.https://www.python.org/psf/donations/
Found a bughttps://docs.python.org/2/bugs.html
Sphinxhttp://sphinx.pocoo.org/

URLs of crawlers that visited me.