René's URL Explorer Experiment
go
Title:
The Python Tutorial — Python v3.0.1 documentation
direct link
Domain:
docs.python.org
None
text/html; charset=utf-8
Links
:
index
https://docs.python.org/3.0/genindex.html
modules
https://docs.python.org/3.0/modindex.html
next
https://docs.python.org/3.0/tutorial/appetite.html
previous
https://docs.python.org/3.0/whatsnew/2.0.html
Python v3.0.1 documentation
https://docs.python.org/3.0/index.html
¶
https://docs.python.org/3.0/tutorial/index.html#the-python-tutorial
http://www.python.org/
http://www.python.org/
Glossary
https://docs.python.org/3.0/glossary.html#glossary
Whetting Your Appetite
https://docs.python.org/3.0/tutorial/appetite.html
Using the Python Interpreter
https://docs.python.org/3.0/tutorial/interpreter.html
Invoking the Interpreter
https://docs.python.org/3.0/tutorial/interpreter.html#invoking-the-interpreter
Argument Passing
https://docs.python.org/3.0/tutorial/interpreter.html#argument-passing
Interactive Mode
https://docs.python.org/3.0/tutorial/interpreter.html#interactive-mode
The Interpreter and Its Environment
https://docs.python.org/3.0/tutorial/interpreter.html#the-interpreter-and-its-environment
Error Handling
https://docs.python.org/3.0/tutorial/interpreter.html#error-handling
Executable Python Scripts
https://docs.python.org/3.0/tutorial/interpreter.html#executable-python-scripts
Source Code Encoding
https://docs.python.org/3.0/tutorial/interpreter.html#source-code-encoding
The Interactive Startup File
https://docs.python.org/3.0/tutorial/interpreter.html#the-interactive-startup-file
An Informal Introduction to Python
https://docs.python.org/3.0/tutorial/introduction.html
Using Python as a Calculator
https://docs.python.org/3.0/tutorial/introduction.html#using-python-as-a-calculator
Numbers
https://docs.python.org/3.0/tutorial/introduction.html#numbers
Strings
https://docs.python.org/3.0/tutorial/introduction.html#strings
About Unicode
https://docs.python.org/3.0/tutorial/introduction.html#about-unicode
Lists
https://docs.python.org/3.0/tutorial/introduction.html#lists
First Steps Towards Programming
https://docs.python.org/3.0/tutorial/introduction.html#first-steps-towards-programming
More Control Flow Tools
https://docs.python.org/3.0/tutorial/controlflow.html
if Statements
https://docs.python.org/3.0/tutorial/controlflow.html#if-statements
for Statements
https://docs.python.org/3.0/tutorial/controlflow.html#for-statements
The range() Function
https://docs.python.org/3.0/tutorial/controlflow.html#the-range-function
break and continue Statements, and else Clauses on Loops
https://docs.python.org/3.0/tutorial/controlflow.html#break-and-continue-statements-and-else-clauses-on-loops
pass Statements
https://docs.python.org/3.0/tutorial/controlflow.html#pass-statements
Defining Functions
https://docs.python.org/3.0/tutorial/controlflow.html#defining-functions
More on Defining Functions
https://docs.python.org/3.0/tutorial/controlflow.html#more-on-defining-functions
Default Argument Values
https://docs.python.org/3.0/tutorial/controlflow.html#default-argument-values
Keyword Arguments
https://docs.python.org/3.0/tutorial/controlflow.html#keyword-arguments
Arbitrary Argument Lists
https://docs.python.org/3.0/tutorial/controlflow.html#arbitrary-argument-lists
Unpacking Argument Lists
https://docs.python.org/3.0/tutorial/controlflow.html#unpacking-argument-lists
Lambda Forms
https://docs.python.org/3.0/tutorial/controlflow.html#lambda-forms
Documentation Strings
https://docs.python.org/3.0/tutorial/controlflow.html#documentation-strings
Intermezzo: Coding Style
https://docs.python.org/3.0/tutorial/controlflow.html#intermezzo-coding-style
Data Structures
https://docs.python.org/3.0/tutorial/datastructures.html
More on Lists
https://docs.python.org/3.0/tutorial/datastructures.html#more-on-lists
Using Lists as Stacks
https://docs.python.org/3.0/tutorial/datastructures.html#using-lists-as-stacks
Using Lists as Queues
https://docs.python.org/3.0/tutorial/datastructures.html#using-lists-as-queues
List Comprehensions
https://docs.python.org/3.0/tutorial/datastructures.html#list-comprehensions
Nested List Comprehensions
https://docs.python.org/3.0/tutorial/datastructures.html#nested-list-comprehensions
The del statement
https://docs.python.org/3.0/tutorial/datastructures.html#the-del-statement
Tuples and Sequences
https://docs.python.org/3.0/tutorial/datastructures.html#tuples-and-sequences
Sets
https://docs.python.org/3.0/tutorial/datastructures.html#sets
Dictionaries
https://docs.python.org/3.0/tutorial/datastructures.html#dictionaries
Looping Techniques
https://docs.python.org/3.0/tutorial/datastructures.html#looping-techniques
More on Conditions
https://docs.python.org/3.0/tutorial/datastructures.html#more-on-conditions
Comparing Sequences and Other Types
https://docs.python.org/3.0/tutorial/datastructures.html#comparing-sequences-and-other-types
Modules
https://docs.python.org/3.0/tutorial/modules.html
More on Modules
https://docs.python.org/3.0/tutorial/modules.html#more-on-modules
Executing modules as scripts
https://docs.python.org/3.0/tutorial/modules.html#executing-modules-as-scripts
The Module Search Path
https://docs.python.org/3.0/tutorial/modules.html#the-module-search-path
“Compiled” Python files
https://docs.python.org/3.0/tutorial/modules.html#compiled-python-files
Standard Modules
https://docs.python.org/3.0/tutorial/modules.html#standard-modules
The dir() Function
https://docs.python.org/3.0/tutorial/modules.html#the-dir-function
Packages
https://docs.python.org/3.0/tutorial/modules.html#packages
Importing * From a Package
https://docs.python.org/3.0/tutorial/modules.html#importing-from-a-package
Intra-package References
https://docs.python.org/3.0/tutorial/modules.html#intra-package-references
Packages in Multiple Directories
https://docs.python.org/3.0/tutorial/modules.html#packages-in-multiple-directories
Input and Output
https://docs.python.org/3.0/tutorial/inputoutput.html
Fancier Output Formatting
https://docs.python.org/3.0/tutorial/inputoutput.html#fancier-output-formatting
Old string formatting
https://docs.python.org/3.0/tutorial/inputoutput.html#old-string-formatting
Reading and Writing Files
https://docs.python.org/3.0/tutorial/inputoutput.html#reading-and-writing-files
Methods of File Objects
https://docs.python.org/3.0/tutorial/inputoutput.html#methods-of-file-objects
The pickle Module
https://docs.python.org/3.0/tutorial/inputoutput.html#the-pickle-module
Errors and Exceptions
https://docs.python.org/3.0/tutorial/errors.html
Syntax Errors
https://docs.python.org/3.0/tutorial/errors.html#syntax-errors
Exceptions
https://docs.python.org/3.0/tutorial/errors.html#exceptions
Handling Exceptions
https://docs.python.org/3.0/tutorial/errors.html#handling-exceptions
Raising Exceptions
https://docs.python.org/3.0/tutorial/errors.html#raising-exceptions
User-defined Exceptions
https://docs.python.org/3.0/tutorial/errors.html#user-defined-exceptions
Defining Clean-up Actions
https://docs.python.org/3.0/tutorial/errors.html#defining-clean-up-actions
Predefined Clean-up Actions
https://docs.python.org/3.0/tutorial/errors.html#predefined-clean-up-actions
Classes
https://docs.python.org/3.0/tutorial/classes.html
A Word About Terminology
https://docs.python.org/3.0/tutorial/classes.html#a-word-about-terminology
Python Scopes and Name Spaces
https://docs.python.org/3.0/tutorial/classes.html#python-scopes-and-name-spaces
Scopes and Namespaces Example
https://docs.python.org/3.0/tutorial/classes.html#scopes-and-namespaces-example
A First Look at Classes
https://docs.python.org/3.0/tutorial/classes.html#a-first-look-at-classes
Class Definition Syntax
https://docs.python.org/3.0/tutorial/classes.html#class-definition-syntax
Class Objects
https://docs.python.org/3.0/tutorial/classes.html#class-objects
Instance Objects
https://docs.python.org/3.0/tutorial/classes.html#instance-objects
Method Objects
https://docs.python.org/3.0/tutorial/classes.html#method-objects
Random Remarks
https://docs.python.org/3.0/tutorial/classes.html#random-remarks
Inheritance
https://docs.python.org/3.0/tutorial/classes.html#inheritance
Multiple Inheritance
https://docs.python.org/3.0/tutorial/classes.html#multiple-inheritance
Private Variables
https://docs.python.org/3.0/tutorial/classes.html#private-variables
Odds and Ends
https://docs.python.org/3.0/tutorial/classes.html#odds-and-ends
Exceptions Are Classes Too
https://docs.python.org/3.0/tutorial/classes.html#exceptions-are-classes-too
Iterators
https://docs.python.org/3.0/tutorial/classes.html#iterators
Generators
https://docs.python.org/3.0/tutorial/classes.html#generators
Generator Expressions
https://docs.python.org/3.0/tutorial/classes.html#generator-expressions
Brief Tour of the Standard Library
https://docs.python.org/3.0/tutorial/stdlib.html
Operating System Interface
https://docs.python.org/3.0/tutorial/stdlib.html#operating-system-interface
File Wildcards
https://docs.python.org/3.0/tutorial/stdlib.html#file-wildcards
Command Line Arguments
https://docs.python.org/3.0/tutorial/stdlib.html#command-line-arguments
Error Output Redirection and Program Termination
https://docs.python.org/3.0/tutorial/stdlib.html#error-output-redirection-and-program-termination
String Pattern Matching
https://docs.python.org/3.0/tutorial/stdlib.html#string-pattern-matching
Mathematics
https://docs.python.org/3.0/tutorial/stdlib.html#mathematics
Internet Access
https://docs.python.org/3.0/tutorial/stdlib.html#internet-access
Dates and Times
https://docs.python.org/3.0/tutorial/stdlib.html#dates-and-times
Data Compression
https://docs.python.org/3.0/tutorial/stdlib.html#data-compression
Performance Measurement
https://docs.python.org/3.0/tutorial/stdlib.html#performance-measurement
Quality Control
https://docs.python.org/3.0/tutorial/stdlib.html#quality-control
Batteries Included
https://docs.python.org/3.0/tutorial/stdlib.html#batteries-included
Brief Tour of the Standard Library – Part II
https://docs.python.org/3.0/tutorial/stdlib2.html
Output Formatting
https://docs.python.org/3.0/tutorial/stdlib2.html#output-formatting
Templating
https://docs.python.org/3.0/tutorial/stdlib2.html#templating
Working with Binary Data Record Layouts
https://docs.python.org/3.0/tutorial/stdlib2.html#working-with-binary-data-record-layouts
Multi-threading
https://docs.python.org/3.0/tutorial/stdlib2.html#multi-threading
Logging
https://docs.python.org/3.0/tutorial/stdlib2.html#logging
Weak References
https://docs.python.org/3.0/tutorial/stdlib2.html#weak-references
Tools for Working with Lists
https://docs.python.org/3.0/tutorial/stdlib2.html#tools-for-working-with-lists
Decimal Floating Point Arithmetic
https://docs.python.org/3.0/tutorial/stdlib2.html#decimal-floating-point-arithmetic
What Now?
https://docs.python.org/3.0/tutorial/whatnow.html
Interactive Input Editing and History Substitution
https://docs.python.org/3.0/tutorial/interactive.html
Line Editing
https://docs.python.org/3.0/tutorial/interactive.html#line-editing
History Substitution
https://docs.python.org/3.0/tutorial/interactive.html#history-substitution
Key Bindings
https://docs.python.org/3.0/tutorial/interactive.html#key-bindings
Commentary
https://docs.python.org/3.0/tutorial/interactive.html#commentary
Floating Point Arithmetic: Issues and Limitations
https://docs.python.org/3.0/tutorial/floatingpoint.html
Representation Error
https://docs.python.org/3.0/tutorial/floatingpoint.html#representation-error
What’s New in Python 2.0
https://docs.python.org/3.0/whatsnew/2.0.html
Whetting Your Appetite
https://docs.python.org/3.0/tutorial/appetite.html
Show Source
https://docs.python.org/3.0/_sources/tutorial/index.txt
index
https://docs.python.org/3.0/genindex.html
modules
https://docs.python.org/3.0/modindex.html
next
https://docs.python.org/3.0/tutorial/appetite.html
previous
https://docs.python.org/3.0/whatsnew/2.0.html
Python v3.0.1 documentation
https://docs.python.org/3.0/index.html
Copyright
https://docs.python.org/3.0/copyright.html
Sphinx
http://sphinx.pocoo.org/
URLs of
crawlers that visited me
.