Python (programming language)

From Seo Wiki - Search Engine Optimization and Programming Languages
Jump to navigationJump to search
Python
Official Python Logo
Usual file extensions .py, .pyw, .pyc, .pyo, .pyd
Paradigm multi-paradigm: object-oriented, imperative, functional
Appeared in 1991
Designed by Guido van Rossum
Developer Python Software Foundation
Stable release 3.1.1/ {{Expansion depth limit exceeded|{{Expansion depth limit exceeded|mdy }}; {{Expansion depth limit exceeded|{{Expansion depth limit exceeded}}-{{Expansion depth limit exceeded}}-{{Expansion depth limit exceeded}}|min_magnitude=days}}}}
2.6.4/ {{Expansion depth limit exceeded|{{Expansion depth limit exceeded|mdy }}; {{Expansion depth limit exceeded|{{Expansion depth limit exceeded}}-{{Expansion depth limit exceeded}}-{{Expansion depth limit exceeded}}|min_magnitude=days}}}}
Preview release 2.7 alpha 2 / {{Expansion depth limit exceeded|{{Expansion depth limit exceeded|mdy }}; {{Expansion depth limit exceeded|{{Expansion depth limit exceeded}}-{{Expansion depth limit exceeded}}-{{Expansion depth limit exceeded}}|min_magnitude=days}}}}
Typing discipline duck, dynamic, strong
Major implementations CPython, IronPython, Jython, Python for S60, PyPy, Unladen Swallow
Dialects Stackless Python, RPython
Influenced by ABC, ALGOL 68,[1] C, Haskell, Icon, Lisp, Modula-3, Perl, Java
Influenced Boo, Cobra, D, Dao, Falcon, Groovy, Nimrod, Ruby
OS Cross-platform
License Python Software Foundation License
Website www.python.org

Python is a general-purpose high-level programming language.[2] Its design philosophy emphasizes code readability.[3] Python claims to "[combine] remarkable power with very clear syntax",[4] and its standard library is large and comprehensive. Its use of indentation for block delimiters is unusual among popular programming languages.

Python supports multiple programming paradigms (primarily object oriented, imperative, and functional) and features a fully dynamic type system and automatic memory management, similar to that of Perl, Ruby, Scheme, and Tcl. Like other dynamic languages, Python is often used as a scripting language.

The language has an open, community-based development model managed by the non-profit Python Software Foundation, which maintains the de facto definition of the language in CPython, the reference implementation.

History

Python was conceived in the late 1980s[5] and its implementation was started in December 1989[6] by Guido van Rossum at CWI in the Netherlands as a successor to the ABC programming language (itself inspired by SETL)[7] capable of exception handling and interfacing with the Amoeba operating system.[8] Van Rossum is Python's principal author, and his continuing central role in deciding the direction of Python is reflected in the title given to him by the Python community, Benevolent Dictator for Life (BDFL).

Python 2.0 was released on 16 October 2000, with many major new features including a full garbage collector and support for Unicode. However, the most important change was to the development process itself, with a shift to a more transparent and community-backed process.[9] Python 3.0, a major, backwards-incompatible release, was released on 3 December 2008[10] after a long period of testing. Many of its major features have been backported to the backwards-compatible Python 2.6.[11]

Programming philosophy

Python is a multi-paradigm programming language. Rather than forcing programmers to adopt a particular style of programming, it permits several styles: object-oriented programming and structured programming are fully supported, and there are a number of language features which support functional programming and aspect-oriented programming (including by metaprogramming[12] and by magic methods).[13] Many other paradigms are supported using extensions, such as pyDBC[14] and Contracts for Python[15] which allow Design by Contract.

Python uses dynamic typing and a combination of reference counting and a cycle-detecting garbage collector for memory management. An important feature of Python is dynamic name resolution (late binding), which binds method and variable names during program execution.

Rather than requiring all desired functionality to be built into the language's core, Python was designed to be highly extensible. New built-in modules can be easily written in C or C++. Python can also be used as an extension language for existing modules and applications that need a programmable interface. This design of a small core language with a large standard library and an easily extensible interpreter was intended by Van Rossum from the very start because of his frustrations with ABC (which espoused the opposite mindset).[5]

The design of Python offers only limited support for functional programming in the Lisp tradition. However, Python's design philosophy exhibits significant similarities to those of minimalist Lisp-family languages, such as Scheme[citation needed]. The library has two modules (itertools and functools) that implement proven functional tools borrowed from Haskell and Standard ML.[16]

While offering choice in coding methodology, the Python philosophy rejects exuberant syntax, such as in Perl, in favor of a sparser, less-cluttered grammar. Python's developers expressly promote a particular "culture" or ideology based on what they want the language to be, favoring language forms they see as "beautiful", "explicit" and "simple". As Alex Martelli put it in his Python Cookbook (2nd ed., p. 230): "To describe something as clever is NOT considered a compliment in the Python culture." Python's philosophy rejects the Perl "there is more than one way to do it" approach to language design in favor of "there should be one—and preferably only one—obvious way to do it".[17]

Python's developers eschew premature optimization, and moreover, reject patches to non-critical parts of CPython which would offer a marginal increase in speed at the cost of clarity.[18] It is sometimes described as "slow".[19] However, by the Pareto principle, most problems and sections of programs are not speed critical, and as computer hardware continues to become exponentially faster (Moore's Law), languages do have more hardware resources available. When speed is a problem, Python programmers tend to try to optimize bottlenecks by algorithm improvements or data structure changes, using a JIT compiler such as Psyco, rewriting the time-critical functions in "closer to the metal" languages such as C, or by translating Python code to C code using tools like Cython.[20]

The core philosophy of the language is summarized by the document "PEP 20 (The Zen of Python)".[17]

Neologisms

A common neologism in the Python community is pythonic, which can have a wide range of meanings related to program style. To say that a piece of code is pythonic is to say that it uses Python idioms well, that it is natural or shows fluency in the language. Likewise, to say of an interface or language feature that it is pythonic is to say that it works well with Python idioms, that its use meshes well with the rest of the language.

In contrast, a mark of unpythonic code is that it attempts to write C++ (or Lisp, Perl, or Java) code in Python—that is, provides a rough transcription rather than an idiomatic translation of forms from another language. The concept of pythonicity is tightly bound to Python's minimalist philosophy of readability and avoiding the "there's more than one way to do it" approach. Unreadable code or incomprehensible idioms are unpythonic.

Users and admirers of Python—most especially those considered knowledgeable or experienced—are often referred to as Pythonists, Pythonistas, and Pythoneers.[21]

The prefix Py can be used to show that something is related to Python. Examples of the use of this prefix in names of Python applications or libraries include Pygame, a binding of SDL to Python (commonly used to create games); PyS60, an implementation for the Symbian Series 60 Operating System; PyQt and PyGTK, which bind Qt and GTK, respectively, to Python; and PyPy, a Python implementation written in Python. The prefix is also used outside of naming software packages: the major Python conference is named PyCon.

An important goal of the Python developers is making Python fun to use. This is reflected in the origin of the name (based on the television series Monty Python's Flying Circus), in the common practice of using Monty Python references in example code, and in an occasionally playful approach to tutorials and reference materials.[22][23] For example, the metasyntactic variables often used in Python literature are spam and eggs, instead of the traditional foo and bar.

Usage

Python is often used as a scripting language for web applications, e.g. via mod_python for the Apache web server. With Web Server Gateway Interface a standard API has been developed to facilitate these applications. Web application frameworks or application servers like Django, Pylons, TurboGears, web2py and Zope support developers in the design and maintenance of complex applications. Libraries like NumPy, Scipy and Matplotlib allow Python to be used effectively in scientific computing.

Python has been successfully embedded in a number of software products as a scripting language, including in finite element method software such as Abaqus, 3D animation packages such as Maya, MotionBuilder, Softimage, Cinema 4D, BodyPaint 3D, modo, and Blender, and 2D imaging programs like GIMP, Inkscape, Scribus, and Paint Shop Pro.[24] ESRI is now promoting Python as the best choice for writing scripts in ArcGIS.[25] It has even been used in several videogames.[26]

For many operating systems, Python is a standard component; it ships with most Linux distributions, with NetBSD, and OpenBSD, and with Mac OS X. Ubuntu uses the Ubiquity installer, while Red Hat Linux and Fedora use the Anaconda installer, and both installers are written in Python. Gentoo Linux uses Python in its package management system, Portage, and the standard tool to access it, emerge. Pardus uses it for administration and during system boot.[27]

Python has also seen extensive use in the information security industry, including exploit development.[28]

Among the users of Python are YouTube[29] and the original BitTorrent client.[30] Large organizations that make use of Python include Google,[31] Yahoo!,[32] CERN,[33], NASA,[34] and ITA.[35] Most of the Sugar software for the One Laptop Per Child XO, now developed at Sugar Labs, is written in Python.[36]

Syntax and semantics

File:Python add5 syntax.svg
Syntax-highlighted Python 2.x code.

Python was intended to be a highly readable language. It is designed to have an uncluttered visual layout, frequently using English keywords where other languages use punctuation. Python requires less boilerplate than traditional manifestly typed structured languages such as C or Pascal, and has a smaller number of syntactic exceptions and special cases than either of these.[37]

Indentation

Python uses whitespace indentation, rather than curly braces or keywords, to delimit blocks (a feature also known as the off-side rule). An increase in indentation comes after certain statements; a decrease in indentation signifies the end of the current block.[38]

Statements and control flow

Python's statements include:

  • The if statement, which conditionally executes a block of code, along with else and elif (a contraction of else-if).
  • The for statement, which iterates over an iterable object, capturing each element to a local variable for use by the attached block.
  • The while statement, which executes a block of code as long as its condition is true.
  • The try statement, which allows exceptions raised in its attached code block to be caught and handled by except clauses; it also ensures that clean-up code in a finally block will always be run regardless of how the block exits.
  • The class statement, which executes a block of code and attaches its local namespace to a class, for use in object-oriented programming.
  • The def statement, which defines a function or method.
  • The with statement, which encloses a code block within a context manager (for example, acquiring a lock before the block of code is run, and releasing the lock afterwards).
  • The pass statement, which serves as a NOP and can be used in place of a code block.

Each statement has its own semantics: for example, the def statement does not execute its block immediately, unlike most other statements.

CPython does not support continuations, and according to Guido van Rossum it never will.[39] However, better support for coroutine-like functionality is provided in 2.5, by extending Python's generators.[40] Prior to 2.5, generators were lazy iterators; information was passed unidirectionally out of the generator. As of Python 2.5, it is possible to pass information back into a generator function.

Methods

Methods on objects are functions attached to the object's class; the syntax instance.method(argument) is, for normal methods and functions, syntactic sugar for Class.method(instance, argument). Python methods have an explicit self parameter to access instance data, in contrast to the implicit self in some other object-oriented programming languages (for example, Java, C++ or Ruby).[41]

Typing

Python uses duck typing and has typed objects but untyped variable names. Type constraints are not checked at compile time; rather, operations on an object may fail, signifying that the given object is not of a suitable type. Despite being dynamically typed, Python is strongly typed, forbidding operations that are not well-defined (for example, adding a number to a string) rather than silently attempting to make sense of them.

Python allows programmers to define their own types using classes, which are most often used for object-oriented programming. New instances of classes are constructed by calling the class (for example, SpamClass() or EggsClass()), and the classes themselves are instances of the metaclass type (itself an instance of itself), allowing metaprogramming and reflection.

Prior to version 3.0, Python had two kinds of classes: "old-style" and "new-style". Old-style classes were eliminated in Python 3.0, making all classes new-style. In versions between 2.2 and 3.0, both kinds of classes could be used. The syntax of both styles is the same, the difference being whether the class object is inherited from, directly or indirectly (all new-style classes inherit from object and are instances of type).

Here is a summary of Python's built-in types:

Type Description Syntax example
str An immutable sequence of Unicode characters 'Wikipedia'
"Wikipedia"
"""Spanning
multiple
lines"""
bytes An immutable sequence of bytes b'Some ASCII'
b"Some ASCII"
list Mutable, can contain mixed types [4.0, 'string', True]
tuple Immutable, can contain mixed types (4.0, 'string', True)
set, frozenset Unordered, contains no duplicates {4.0, 'string', True}
frozenset([4.0, 'string', True])
dict A mutable group of key and value pairs {'key1': 1.0, 'key2': False}
int An immutable fixed precision number of unlimited magnitude 42
float An immutable floating point number (system-defined precision) 3.1415927
complex An immutable complex number with real number and imaginary parts 3+2.7j
bool An immutable truth value True
False

While many programming languages round the result of integer division towards zero, Python always rounds it down towards minus infinity; so that 7//3 is 2, but (−7)//3 is −3.

Python provides a round function for rounding floats to integers. Version 2.6.1 and lower use round-away-from-zero: round(0.5) is 1.0, round(-0.5) is -1.0. Version 3.0 and higher use round-to-even: round(1.5) is 2.0, round(2.5) is 2.0. The Decimal type/class in module decimal (since version 2.4) provides exact numerical representation and several rounding modes.

Implementations

CPython

The mainstream Python implementation, known as CPython, is written in C meeting the C89 standard.[42] CPython compiles Python programs into intermediate bytecode,[43] which are then executed by the virtual machine.[44] It is distributed with a large standard library written in a mixture of C and Python. CPython ships in versions for many platforms, including Microsoft Windows and most modern Unix-like systems. CPython was intended from almost its very conception to be cross-platform; its use and development on esoteric platforms such as Amoeba, alongside more conventional ones like Unix and Mac OS, has greatly helped in this regard.[45]

Stackless Python is a significant fork of CPython that implements microthreads; it does not use the C memory stack. CPython uses a GIL to allow only one thread to execute at a time while the Stackless Python threads are independent of the OS and can run concurrently. Stackless Python is better suited to scalable tasks and for use on microcontrollers or other limited resource platforms due to the thread's light weight. It can be expected to run on approximately the same platforms that CPython runs on.

Google started a project called Unladen Swallow in 2009 with the aims of increasing the speed of the python interpreter by 5 times and improving its multithreading ability to scale to thousands of cores.[46]

Alternative implementations

Jython compiles the Python program into Java byte code, which can then be executed by every Java Virtual Machine implementation. This also enables the use of Java class library functions from the Python program. IronPython follows a similar approach in order to run Python programs on the .NET Common Language Runtime. PyPy is an experimental self-hosting implementation of Python, written in Python, that can output several types of bytecode, object code and intermediate languages. There also exist compilers to high-level object languages, with either unrestricted Python, a restricted subset of Python, or a language similar to Python as the source language. PyPy is of this type, compiling RPython to several languages; other examples include Pyjamas compiling to Javascript; Shed Skin compiling to C++; and Cython & Pyrex compiling to C.

In 2005 Nokia released a Python interpreter for the Series 60 mobile phones called PyS60. It includes many of the modules from the CPython implementations and some additional modules for integration with the Symbian operating system. This project has been kept up to date to run on all variants of the S60 platform and there are several third party modules available. There is also a Python interpreter for Windows CE devices (including Pocket PC). It is called PythonCE. There are additional tools available for easy application and GUI development.

ChinesePython (中蟒) is a Python programming language using Chinese language lexicon. Besides reserved words and variable names, most data type operations can be coded in Chinese as well.

Interpretational semantics

Most Python implementations (including CPython, the primary implementation) can function as a command line interpreter, for which the user enters statements sequentially and receives the results immediately. In short, Python acts as a shell. While the semantics of the other modes of execution (bytecode compilation, or compilation to native code) preserve the sequential semantics, they offer a speed boost at the cost of interactivity, so they are usually only used outside of a command-line interaction (eg, when importing a module).

Other shells add capabilities beyond those in the basic interpreter, including IDLE, IPython, and bpython. While generally following the visual style of the Python shell, they implement features like auto-completion, retention of session state, and syntax highlighting.

Some implementations can compile not only to bytecode, but can turn Python code into machine code. So far, this has only been done for restricted subsets of Python. PyPy takes this approach, naming its restricted compilable version of Python RPython.

Psyco is a specialising just in time compiler that integrates with CPython and transforms bytecode to machine code at runtime. The produced code is specialised for certain data types and is faster than standard Python code. Psyco is compatible with all Python code, not only a subset.[47]

Development

Python development is conducted largely through the Python Enhancement Proposal (or "PEP") process. PEPs are standardized design documents providing general information related to Python, including proposals, descriptions, design rationales, and explanations for language features.[48] Outstanding PEPs are reviewed and commented upon by Van Rossum, the Python project's Benevolent Dictator for Life (leader / language architect).[49] CPython's developers also communicate over a mailing list, python-dev, which is the primary forum for discussion about the language's development; specific issues are discussed in the Roundup bug tracker maintained at python.org.[50] Development takes place at the self-hosted svn.python.org.

CPython's public releases come in three types, distinguished by which part of the version number is incremented:

  • backwards-incompatible versions, where code is expected to break and must be manually ported. The first part of the version number is incremented. These releases happen infrequently—for example, version 3.0 was released 8 years after 2.0.
  • major or 'feature' releases, which are largely compatible but introduce new features. The second part of the version number is incremented. These releases are scheduled to occur roughly every 18 months, and each major version is supported by bugfixes for several years after its release.[51]
  • bugfix releases, which introduce no new features but fix bugs. The third and final part of the version number is incremented. These releases are made whenever a sufficient number of bugs have been fixed upstream since the last release, or roughly every 3 months. Security vulnerabilities are also patched in bugfix releases.[52]

A number of alpha, beta, and release-candidates are also released as previews and for testing before the final release is made. Although there is a rough schedule for each release, this is often pushed back if the code is not ready. The development team monitor the state of the code by running the large unit test suite during development, and using the BuildBot continuous integration system.[53]

Standard library

Python has a large standard library, commonly cited as one of Python's greatest strengths,[54] providing pre-written tools suited to many tasks. This is deliberate and has been described as a "batteries included"[55] Python philosophy. The modules of the standard library can be augmented with custom modules written in either C or Python. Recently, Boost C++ Libraries includes a library, Boost.Python, to enable interoperability between C++ and Python. Because of the wide variety of tools provided by the standard library, combined with the ability to use a lower-level language such as C and C++, which is already capable of interfacing between other libraries, Python can be a powerful glue language between languages and tools.

The standard library is particularly well tailored to writing Internet-facing applications, with a large number of standard formats and protocols (such as MIME and HTTP) already supported. Modules for creating graphical user interfaces, connecting to relational databases, arithmetic with arbitrary precision decimals, manipulating regular expressions, and doing unit testing are also included.[56]

Some parts of the standard library are covered by specifications (for example, the WSGI implementation wsgiref follows PEP 333), but the majority of the modules are not. They are specified by their code, internal documentation, and test suite (if supplied). However, because most of the standard library is cross-platform Python code, there are only a few modules that must be altered or completely rewritten by alternative implementations.

Influences on other languages

Python's design and philosophy have influenced several programming languages, including:

  • Pyrex and its derivative Cython are code translators that are targeted at writing fast C extensions for the CPython interpreter. The language is mostly Python with syntax extensions for C and C++ features. Both languages produce compilable C code as output.
  • Boo uses indentation, a similar syntax, and a similar object model. However, Boo uses static typing and is closely integrated with the .NET framework.[57]
  • ECMAScript borrowed iterators, generators, and list comprehensions from Python.[58]
  • Go is described as incorporating the "development speed of working in a dynamic language like Python".[59]
  • Groovy was motivated by the desire to bring the Python design philosophy to Java.[60]
  • OCaml has an optional syntax, called twt (The Whitespace Thing), inspired by Python and Haskell.[61]

Python's development practices have also been emulated by other languages. The practice of requiring a document describing the rationale for, and issues surrounding, a change to the language (in Python's case, a PEP) is also used in Tcl[62] and Erlang[63] because of Python's influence.

See also

References

  1. [{{Expansion depth limit exceeded||}} "Interview with Guido van Rossum"]. July 1998. {{Expansion depth limit exceeded||}}. Retrieved 29 2007. 
  2. [{{Expansion depth limit exceeded||}} "What is Python Good For?"]. [{{Expansion depth limit exceeded|{{{Expansion depth limit exceeded}}} |{{Expansion depth limit exceeded|{{Expansion depth limit exceeded| http://www.pubmedcentral.nih.gov/articlerender.fcgi?tool=pmcentrez&artid={{{Expansion depth limit exceeded}}} }}}} }} General Python FAQ]. Python Foundation. {{Expansion depth limit exceeded||}}. Retrieved 2008-09-05. 
  3. [{{Expansion depth limit exceeded||}} "What is Python? Executive Summary"]. [{{Expansion depth limit exceeded|{{{Expansion depth limit exceeded}}} |{{Expansion depth limit exceeded|{{Expansion depth limit exceeded| http://www.pubmedcentral.nih.gov/articlerender.fcgi?tool=pmcentrez&artid={{{Expansion depth limit exceeded}}} }}}} }} Python documentation]. Python Foundation. {{Expansion depth limit exceeded||}}. Retrieved 2007-03-21. 
  4. [{{Expansion depth limit exceeded||}} "General Python FAQ"]. [{{Expansion depth limit exceeded|{{{Expansion depth limit exceeded}}} |{{Expansion depth limit exceeded|{{Expansion depth limit exceeded| http://www.pubmedcentral.nih.gov/articlerender.fcgi?tool=pmcentrez&artid={{{Expansion depth limit exceeded}}} }}}} }} python.org]. Python Software Foundation. {{Expansion depth limit exceeded||}}. Retrieved 2009-06-27. 
  5. 5.0 5.1 [{{Expansion depth limit exceeded||}} "The Making of Python"]. Artima Developer. {{Expansion depth limit exceeded||}}. Retrieved 2007-03-22. 
  6. [{{Expansion depth limit exceeded||}} "A Brief Timeline of Python"]. Guido van Rossum. {{Expansion depth limit exceeded||}}. Retrieved 2009-01-20. 
  7. van Rossum. [{{Expansion depth limit exceeded||}} "[Python-Dev] SETL (was: Lukewarm about range literals)"]. {{Expansion depth limit exceeded||}}. Retrieved 2009-06-27. 
  8. [{{Expansion depth limit exceeded||}} "Why was Python created in the first place?"]. Python FAQ. {{Expansion depth limit exceeded||}}. Retrieved 2007-03-22. 
  9. A.M. Kuchling and Moshe Zadka. [{{Expansion depth limit exceeded||}} "What's New in Python 2.0"]. {{Expansion depth limit exceeded||}}. Retrieved 2007-03-22. 
  10. [{{Expansion depth limit exceeded||}} "Python 3.0 Release"]. Python Software Foundation. {{Expansion depth limit exceeded||}}. Retrieved 2009-07-08. 
  11. van Rossum (5 April 2006]]). [{{Expansion depth limit exceeded||}} "PEP 3000 -- Python 3000"]. Python Software Foundation. {{Expansion depth limit exceeded||}}. Retrieved 2009-06-27. 
  12. The Cain Gang Ltd.. [{{Expansion depth limit exceeded||}} "Python Metaclasses: Who? Why? When?"] (PDF). {{Expansion depth limit exceeded||}}. Retrieved 2009-06-27. 
  13. [{{Expansion depth limit exceeded||}} "3.3. Special method names"]. [{{Expansion depth limit exceeded|{{{Expansion depth limit exceeded}}} |{{Expansion depth limit exceeded|{{Expansion depth limit exceeded| http://www.pubmedcentral.nih.gov/articlerender.fcgi?tool=pmcentrez&artid={{{Expansion depth limit exceeded}}} }}}} }} The Python Language Reference]. Python Software Foundation. {{Expansion depth limit exceeded||}}. Retrieved 2009-06-27. 
  14. http://www.nongnu.org/pydbc/
  15. http://www.wayforward.net/pycontract/
  16. [{{Expansion depth limit exceeded||}} "6.5 itertools - Functions creating iterators for efficient looping"]. Docs.python.org. {{Expansion depth limit exceeded||}}. Retrieved 2008-11-24. 
  17. 17.0 17.1 [{{Expansion depth limit exceeded||}} "PEP 20 - The Zen of Python"]. Python Software Foundation. 2004-08-23. {{Expansion depth limit exceeded||}}. Retrieved 2008-11-24. 
  18. Python Culture
  19. Python is... slow? December 21st, 2004 — Peter Bowyer’s weblog]
  20. Python Patterns - An Optimization Anecdote
  21. David Goodger. [{{Expansion depth limit exceeded||}} "Code Like a Pythonista: Idiomatic Python"]. {{Expansion depth limit exceeded||}}. ; [{{Expansion depth limit exceeded||}} "How to think like a Pythonista"]. {{Expansion depth limit exceeded||}}. 
  22. Python Tutorial
  23. Python Challenge tutorial
  24. Documentation of the PSP Scripting API can be found at JASC Paint Shop Pro 9: Additional Download Resources
  25. [{{Expansion depth limit exceeded||}} "About getting started with writing geoprocessing scripts"]. November 2006. {{Expansion depth limit exceeded||}}. Retrieved April 2007. 
  26. Two video games using Python are [{{Expansion depth limit exceeded||}} "Civilization IV"]. 2kgames.com. {{Expansion depth limit exceeded||}}. Retrieved 2008-11-24.  and CCP. [{{Expansion depth limit exceeded||}} "EVE Online | EVE Insider | Dev Blog"]. Myeve.eve-online.com. {{Expansion depth limit exceeded||}}. Retrieved 2008-11-24. 
  27. [{{Expansion depth limit exceeded||}} ":: Pardus :: TÜBİTAK/UEKAE ::"]. Pardus.org.tr. {{Expansion depth limit exceeded||}}. Retrieved 2008-11-24. 
  28. Products and discussion of this use of Python include [{{Expansion depth limit exceeded||}} "IMMUNITY : Knowing You're Secure"]. Immunitysec.com. {{Expansion depth limit exceeded||}}. Retrieved 2008-11-24. ; CORE Security Technologies' open source software repository; [{{Expansion depth limit exceeded||}} "Wapiti - Web application security auditor"]. Wapiti.sourceforge.net. {{Expansion depth limit exceeded||}}. Retrieved 2008-11-24. ; [{{Expansion depth limit exceeded||}} "TAOF - theartoffuzzing.com - Home"]. Theartoffuzzing.com. {{Expansion depth limit exceeded||}}. Retrieved 2008-11-24. ; [{{Expansion depth limit exceeded||}} "[Dailydave] RE: Network Exploitation Tools aka Exploitation Engines"]. Fist.immunitysec.com. {{Expansion depth limit exceeded||}}. Retrieved 2008-11-24. 
  29. [{{Expansion depth limit exceeded||}} "Coder Who Says Py: YouTube runs on Python!"]. Sayspy.blogspot.com. December 12, 2006. {{Expansion depth limit exceeded||}}. Retrieved 2008-11-24. 
  30. Review of original BitTorrent software at O'Reilly Python Dev Center
  31. [{{Expansion depth limit exceeded||}} "Quotes about Python"]. Python.org. {{Expansion depth limit exceeded||}}. Retrieved 2008-11-24. 
  32. [{{Expansion depth limit exceeded||}} "Organizations Using Python"]. Python.org. {{Expansion depth limit exceeded||}}. Retrieved 2009-01-15. 
  33. CERN Document Server: Record#974627: Python : the holy grail of programming
  34. [{{Expansion depth limit exceeded||}} "Python Success Stories"]. Python.org. {{Expansion depth limit exceeded||}}. Retrieved 2008-11-24. 
  35. Python Slithers into Systems by Darryl K. Taft
  36. [{{Expansion depth limit exceeded||}} "What is Sugar? - Sugar Labs"]. sugarlabs.org. 2008-05-10. {{Expansion depth limit exceeded||}}. Retrieved 0r-2-11. 
  37. [{{Expansion depth limit exceeded||}} "Is Python a good language for beginning programmers?"]. [{{Expansion depth limit exceeded|{{{Expansion depth limit exceeded}}} |{{Expansion depth limit exceeded|{{Expansion depth limit exceeded| http://www.pubmedcentral.nih.gov/articlerender.fcgi?tool=pmcentrez&artid={{{Expansion depth limit exceeded}}} }}}} }} General Python FAQ]. Python Foundation. March 7, 2005. {{Expansion depth limit exceeded||}}. Retrieved 2007-03-21. 
  38. Myths about indentation in Python
  39. van Rossum (February 9, 2006). [{{Expansion depth limit exceeded||}} "Language Design Is Not Just Solving Puzzles"]. [{{Expansion depth limit exceeded|{{{Expansion depth limit exceeded}}} |{{Expansion depth limit exceeded|{{Expansion depth limit exceeded| http://www.pubmedcentral.nih.gov/articlerender.fcgi?tool=pmcentrez&artid={{{Expansion depth limit exceeded}}} }}}} }} Artima forums]. Artima. {{Expansion depth limit exceeded||}}. Retrieved 2007-03-21. 
  40. van Rossum; Phillip J. Eby (April 21, 2006). [{{Expansion depth limit exceeded||}} "Coroutines via Enhanced Generators"]. [{{Expansion depth limit exceeded|{{{Expansion depth limit exceeded}}} |{{Expansion depth limit exceeded|{{Expansion depth limit exceeded| http://www.pubmedcentral.nih.gov/articlerender.fcgi?tool=pmcentrez&artid={{{Expansion depth limit exceeded}}} }}}} }} Python Enhancement Proposals]. Python Foundation. {{Expansion depth limit exceeded||}}. Retrieved 2007-03-21. 
  41. [{{Expansion depth limit exceeded||}} "Why must 'self' be used explicitly in method definitions and calls?"]. [{{Expansion depth limit exceeded|{{{Expansion depth limit exceeded}}} |{{Expansion depth limit exceeded|{{Expansion depth limit exceeded| http://www.pubmedcentral.nih.gov/articlerender.fcgi?tool=pmcentrez&artid={{{Expansion depth limit exceeded}}} }}}} }} Python FAQ]. Python Foundation. {{Expansion depth limit exceeded||}}. 
  42. [{{Expansion depth limit exceeded||}} "PEP 7 - Style Guide for C Code"]. Python.org. {{Expansion depth limit exceeded||}}. Retrieved 2008-11-24. 
  43. CPython byte code
  44. Python 2.5 internals
  45. [{{Expansion depth limit exceeded||}} "O'Reilly - An Interview with Guido van Rossum"]. Oreilly.com. {{Expansion depth limit exceeded||}}. Retrieved 2008-11-24. 
  46. http://code.google.com/p/unladen-swallow/wiki/ProjectPlan
  47. Introduction to Psyco
  48. PEP 1 -- PEP Purpose and Guidelines
  49. [{{Expansion depth limit exceeded||}} "Parade of the PEPs"]. Python.org. {{Expansion depth limit exceeded||}}. Retrieved 2008-11-24. 
  50. Cannon. [{{Expansion depth limit exceeded||}} "Guido, Some Guys, and a Mailing List: How Python is Developed"]. [{{Expansion depth limit exceeded|{{{Expansion depth limit exceeded}}} |{{Expansion depth limit exceeded|{{Expansion depth limit exceeded| http://www.pubmedcentral.nih.gov/articlerender.fcgi?tool=pmcentrez&artid={{{Expansion depth limit exceeded}}} }}}} }} python.org]. Python Software Foundation. {{Expansion depth limit exceeded||}}. Retrieved 2009-06-27. 
  51. Norwitz (8 April 2002]]). [{{Expansion depth limit exceeded||}} "[Python-Dev] Release Schedules (was Stability & change)"]. {{Expansion depth limit exceeded||}}. Retrieved 2009-06-27. 
  52. Baxter; Aahz (2001-03-15). [{{Expansion depth limit exceeded||}} "PEP 6 -- Bug Fix Releases"]. Python Software Foundation. {{Expansion depth limit exceeded||}}. Retrieved 2009-06-27. 
  53. http://python.org/dev/buildbot/
  54. Przemyslaw Piotrowski, Build a Rapid Web Development Environment for Python Server Pages and Oracle, Oracle Technology Network, July 2006. Accessed October 21, 2008.
  55. [{{Expansion depth limit exceeded||}} "About Python"]. [{{Expansion depth limit exceeded|{{{Expansion depth limit exceeded}}} |{{Expansion depth limit exceeded|{{Expansion depth limit exceeded| http://www.pubmedcentral.nih.gov/articlerender.fcgi?tool=pmcentrez&artid={{{Expansion depth limit exceeded}}} }}}} }} python.org]. Python Software Foundation. {{Expansion depth limit exceeded||}}. Retrieved 2009-06-27. 
  56. [{{Expansion depth limit exceeded||}} "PEP 327 - Decimal Data Type"]. Python.org. {{Expansion depth limit exceeded||}}. Retrieved 2008-11-24. 
  57. [{{Expansion depth limit exceeded||}} "BOO - Gotchas for Python Users"]. Boo.codehaus.org. {{Expansion depth limit exceeded||}}. Retrieved 2008-11-24. 
  58. [{{Expansion depth limit exceeded||}} "proposals:iterators_and_generators [ES4 Wiki]"]. Wiki.ecmascript.org. {{Expansion depth limit exceeded||}}. Retrieved 2008-11-24. 
  59. Kincaid, Jason (2009-11-10). [{{Expansion depth limit exceeded|{{Expansion depth limit exceeded|http://www.pubmedcentral.nih.gov/articlerender.fcgi?tool=pmcentrez&artid={{{Expansion depth limit exceeded}}} }} }} "Google’s Go: A New Programming Language That’s Python Meets C++"]. TechCrunch. http://www.techcrunch.com/2009/11/10/google-go-language/. Retrieved 2010-01-29. 
  60. James Strachan (2003-08-29). [{{Expansion depth limit exceeded||}} "Groovy - the birth of a new dynamic language for the Java platform"]. {{Expansion depth limit exceeded||}}. 
  61. Mike Lin. [{{Expansion depth limit exceeded||}} ""The Whitespace Thing" for OCaml"]. {{Expansion depth limit exceeded||}}. Retrieved 2009-04-12. 
  62. [{{Expansion depth limit exceeded||}} "TIP #3: TIP Format"]. Tcl.tk. {{Expansion depth limit exceeded||}}. Retrieved 2008-11-24. 
  63. EEP - Erlang Enhancement Proposal

Further reading

  • Beazley, David M. (2009). [Expression error: Unrecognized punctuation character "{". Python Essential Reference] (4th ed.). Addison-Wesley Professional. pp. 717. ISBN 978-0672329784. 
  • Downey, Allen B.. [Expression error: Unrecognized punctuation character "{". Think Python: How to Think Like a Computer Scientist]. 
  • Lutz, Mark (2009). [Expression error: Unrecognized punctuation character "{". Learning Python] (4th ed.). O'Reilly Media. pp. 1212. ISBN 978-0596158064. 
  • Martelli, Alex; Ravenscroft, Anna; Ascher (2005). [Expression error: Unrecognized punctuation character "{". Python Cookbook] (2nd ed.). O'Reilly Media. pp. 844. ISBN 978-0596007973. 
  • Pilgrim, Mark (2004). [Expression error: Unrecognized punctuation character "{". Dive Into Python]. Apress. pp. 413. ISBN 978-1590593561. 
  • Summerfield, Mark (2009). [Expression error: Unrecognized punctuation character "{". Programming in Python 3] (2nd ed.). Addison-Wesley Professional. pp. 648. ISBN 978-0321680563. 

External links

Template:Wikiversity2


Template:Python (programming language) Template:Python Web Application Frameworks

af:Python ar:بايثون an:Python az:Python bn:পাইথন (প্রোগ্রামিং ভাষা) bs:Python programski jezik bg:Python ca:Python cs:Python da:Python (programmeringssprog) de:Python (Programmiersprache) et:Python (programmeerimiskeel) el:Python es:Python eo:Python (programlingvo) eu:Python fa:زبان برنامه‌نویسی پایتون fr:Python (langage) gl:Python ko:파이썬 id:Python (bahasa pemrograman) ia:Python (linguage de programmation) is:Python (forritunarmál) it:Python he:Python ka:პითონი (პროგრამირების ენა) la:Python lv:Python lt:Python jbo:paiton hu:Python (programozási nyelv) ml:പൈത്തണ്‍ (പ്രോഗ്രാമിങ്ങ് ഭാഷ) ms:Python nl:Python (programmeertaal) ne:पाइथन प्रोग्रामिङ्ग भाषा ja:Python no:Python pl:Python pt:Python ro:Python ru:Python sq:Python simple:Python (programming language) sk:Python (programovací jazyk) sl:Python (programski jezik) sr:Пајтон (програмски језик) sh:Python programski jezik fi:Python sv:Python (programspråk) ta:பைத்தோன் te:పైథాన్ (కంప్యూటర్ భాష) th:ภาษาไพทอน tr:Python (programlama dili) bug:Python uk:Python vi:Python (ngôn ngữ lập trình) zh:Python

If you like SEOmastering Site, you can support it by - BTC: bc1qppjcl3c2cyjazy6lepmrv3fh6ke9mxs7zpfky0 , TRC20 and more...