2007-08-15 14:28:22 +00:00
|
|
|
.. _tutorial-index:
|
|
|
|
|
|
|
|
######################
|
Merged revisions 66394,66404,66412,66414,66424-66436 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r66394 | benjamin.peterson | 2008-09-11 17:04:02 -0500 (Thu, 11 Sep 2008) | 1 line
fix typo
........
r66404 | gerhard.haering | 2008-09-12 08:54:06 -0500 (Fri, 12 Sep 2008) | 2 lines
sqlite3 module: Mark iterdump() method as "Non-standard" like all the other methods not found in DB-API.
........
r66412 | gerhard.haering | 2008-09-12 13:58:57 -0500 (Fri, 12 Sep 2008) | 2 lines
Fixes issue #3103. In the sqlite3 module, made one more function static. All renaming public symbos now have the pysqlite prefix to avoid name clashes. This at least once created problems where the same symbol name appeared somewhere in Apache and the sqlite3 module was used from mod_python.
........
r66414 | gerhard.haering | 2008-09-12 17:33:22 -0500 (Fri, 12 Sep 2008) | 2 lines
Issue #3846: Release GIL during calls to sqlite3_prepare. This improves concurrent access to the same database file from multiple threads/processes.
........
r66424 | andrew.kuchling | 2008-09-12 20:22:08 -0500 (Fri, 12 Sep 2008) | 1 line
#687648 from Robert Schuppenies: use classic division. (RM Barry gave permission to update the demos.)
........
r66425 | andrew.kuchling | 2008-09-12 20:27:33 -0500 (Fri, 12 Sep 2008) | 1 line
#687648 from Robert Schuppenies: use classic division. From me: don't use string exception; flush stdout after printing
........
r66426 | andrew.kuchling | 2008-09-12 20:34:41 -0500 (Fri, 12 Sep 2008) | 1 line
#687648 from Robert Schuppenies: use classic division. From me: don't use string exception; add __main__ section
........
r66427 | andrew.kuchling | 2008-09-12 20:42:55 -0500 (Fri, 12 Sep 2008) | 1 line
#687648 from Robert Schuppenies: use classic division. From me: remove two stray semicolons
........
r66428 | andrew.kuchling | 2008-09-12 20:43:28 -0500 (Fri, 12 Sep 2008) | 1 line
#687648 from Robert Schuppenies: use classic division.
........
r66429 | andrew.kuchling | 2008-09-12 20:47:02 -0500 (Fri, 12 Sep 2008) | 1 line
Remove semicolon
........
r66430 | andrew.kuchling | 2008-09-12 20:48:36 -0500 (Fri, 12 Sep 2008) | 1 line
Subclass exception
........
r66431 | andrew.kuchling | 2008-09-12 20:56:56 -0500 (Fri, 12 Sep 2008) | 1 line
Fix SyntaxError
........
r66432 | andrew.kuchling | 2008-09-12 20:57:25 -0500 (Fri, 12 Sep 2008) | 1 line
Update uses of string exceptions
........
r66433 | andrew.kuchling | 2008-09-12 21:08:30 -0500 (Fri, 12 Sep 2008) | 1 line
Use title case
........
r66434 | andrew.kuchling | 2008-09-12 21:09:15 -0500 (Fri, 12 Sep 2008) | 1 line
Remove extra 'the'; the following title includes it
........
r66435 | andrew.kuchling | 2008-09-12 21:11:51 -0500 (Fri, 12 Sep 2008) | 1 line
#3288: Document as_integer_ratio
........
r66436 | andrew.kuchling | 2008-09-12 21:14:15 -0500 (Fri, 12 Sep 2008) | 1 line
Use title case
........
2008-09-13 15:58:53 +00:00
|
|
|
The Python Tutorial
|
2007-08-15 14:28:22 +00:00
|
|
|
######################
|
|
|
|
|
|
|
|
:Release: |version|
|
|
|
|
:Date: |today|
|
|
|
|
|
|
|
|
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 and dynamic typing,
|
|
|
|
together with its interpreted nature, make it an ideal language for scripting
|
|
|
|
and rapid application development in many areas on most platforms.
|
|
|
|
|
|
|
|
The Python interpreter and the extensive standard library are freely available
|
|
|
|
in source or binary form for all major platforms from the Python Web site,
|
|
|
|
http://www.python.org/, and may be freely distributed. The same site also
|
|
|
|
contains distributions of and pointers to many free third party Python modules,
|
|
|
|
programs and tools, and additional documentation.
|
|
|
|
|
|
|
|
The Python interpreter is easily extended with new functions and data types
|
|
|
|
implemented in C or C++ (or other languages callable from C). Python is also
|
|
|
|
suitable as an extension language for customizable applications.
|
|
|
|
|
|
|
|
This tutorial introduces the reader informally to the basic concepts and
|
|
|
|
features of the Python language and system. It helps to have a Python
|
|
|
|
interpreter handy for hands-on experience, but all examples are self-contained,
|
|
|
|
so the tutorial can be read off-line as well.
|
|
|
|
|
|
|
|
For a description of standard objects and modules, see the Python Library
|
|
|
|
Reference document. The Python Reference Manual gives a more formal definition
|
|
|
|
of the language. To write extensions in C or C++, read Extending and Embedding
|
|
|
|
the Python Interpreter and Python/C API Reference. There are also several books
|
|
|
|
covering Python in depth.
|
|
|
|
|
|
|
|
This tutorial does not attempt to be comprehensive and cover every single
|
|
|
|
feature, or even every commonly used feature. Instead, it introduces many of
|
|
|
|
Python's most noteworthy features, and will give you a good idea of the
|
|
|
|
language's flavor and style. After reading it, you will be able to read and
|
|
|
|
write Python modules and programs, and you will be ready to learn more about the
|
|
|
|
various Python library modules described in the Python Library Reference.
|
|
|
|
|
2007-08-17 18:30:38 +00:00
|
|
|
The :ref:`glossary` is also worth going through.
|
|
|
|
|
2007-08-15 14:28:22 +00:00
|
|
|
.. toctree::
|
|
|
|
|
|
|
|
appetite.rst
|
|
|
|
interpreter.rst
|
|
|
|
introduction.rst
|
|
|
|
controlflow.rst
|
|
|
|
datastructures.rst
|
|
|
|
modules.rst
|
|
|
|
inputoutput.rst
|
|
|
|
errors.rst
|
|
|
|
classes.rst
|
|
|
|
stdlib.rst
|
|
|
|
stdlib2.rst
|
|
|
|
whatnow.rst
|
|
|
|
interactive.rst
|
|
|
|
floatingpoint.rst
|