Python (programming language)

This article is about the programming language. For the snake genus, see Python (genus). For other uses, see Python (disambiguation).
Python
Paradigm multi-paradigm: object-oriented, imperative, functional, procedural, reflective
Designed by Guido van Rossum
Developer Python Software Foundation
First appeared 20 February 1991 (1991-02-20)[1]
Stable release
3.5.2 / 27 June 2016 (2016-06-27)[2]
2.7.12 / 28 June 2016 (2016-06-28)[3]
Preview release
3.6.0b4 / November 22, 2016 (2016-11-22)[4]
Typing discipline duck, dynamic, strong, gradual (as of Python 3.5)[5]
OS Cross-platform
License Python Software Foundation License
Filename extensions .py, .pyc, .pyd, .pyo,[6] .pyw, .pyz[7]
Website www.python.org
Major implementations
CPython, IronPython, Jython, MicroPython, PyPy
Dialects
Cython, RPython, Stackless Python
Influenced by
ABC,[8] ALGOL 68,[9] C,[10] C++,[11] Dylan,[12] Haskell,[13] Icon,[14] Java,[15] Lisp,[16] Modula3,[11] Perl
Influenced
Boo, Cobra, CoffeeScript,[17] D, F#, Falcon, Genie,[18] Go, Groovy, JavaScript,[19][20] Julia,[21] Nim, Ruby,[22] Swift,[23]

Python is a widely used high-level, general-purpose, interpreted, dynamic programming language.[24][25] Its design philosophy emphasizes code readability, and its syntax allows programmers to express concepts in fewer lines of code than possible in languages such as C++ or Java.[26][27] The language provides constructs intended to enable writing clear programs on both a small and large scale.[28]

Python supports multiple programming paradigms, including object-oriented, imperative and functional programming or procedural styles. It features a dynamic type system and automatic memory management and has a large and comprehensive standard library.[29]

Python interpreters are available for many operating systems, allowing Python code to run on a wide variety of systems. CPython, the reference implementation of Python, is open source software[30] and has a community-based development model, as do nearly all of its variant implementations. CPython is managed by the non-profit Python Software Foundation.

History

Guido van Rossum, the creator of Python
Main article: History of Python

Python was conceived in the late 1980s,[31] and its implementation began in December 1989[32] by Guido van Rossum at Centrum Wiskunde & Informatica (CWI) in the Netherlands as a successor to the ABC language (itself inspired by SETL)[33] capable of exception handling and interfacing with the operating system Amoeba.[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).

About the origin of Python, Van Rossum wrote in 1996:[34]

Over six years ago, in December 1989, I was looking for a "hobby" programming project that would keep me occupied during the week around Christmas. My office ... would be closed, but I had a home computer, and not much else on my hands. I decided to write an interpreter for the new scripting language I had been thinking about lately: a descendant of ABC that would appeal to Unix/C hackers. I chose Python as a working title for the project, being in a slightly irreverent mood (and a big fan of Monty Python's Flying Circus).

Python 2.0 was released on 16 October 2000 and had many major new features, including a cycle-detecting garbage collector and support for Unicode. With this release the development process was changed and became more transparent and community-backed.[35]

Python 3.0 (which early in its development was commonly referred to as Python 3000 or py3k), a major, backwards-incompatible release, was released on 3 December 2008[36] after a long period of testing. Many of its major features have been backported to the backwards-compatible Python 2.6.x[37] and 2.7.x version series.

Features and philosophy

Python is a multi-paradigm programming language: object-oriented programming and structured programming are fully supported, and many language features support functional programming and aspect-oriented programming (including by metaprogramming[38] and metaobjects (magic methods)).[39] Many other paradigms are supported via extensions, including design by contract[40][41] and logic programming.[42]

Python uses dynamic typing and a mix 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.

The design of Python offers some support for functional programming in the Lisp tradition. The language has map(), reduce() and filter() functions; list comprehensions, dictionaries, and sets; and generator expressions.[43] The standard library has two modules (itertools and functools) that implement functional tools borrowed from Haskell and Standard ML.[44]

The core philosophy of the language is summarized by the document The Zen of Python (PEP 20), which includes aphorisms such as:[45]

Rather than requiring all desired functionality to be built into the language's core, Python was designed to be highly extensible. Python can also be embedded in existing 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 start because of his frustrations with ABC, which espoused the opposite mindset.[31]

While offering choice in coding methodology, the Python philosophy rejects exuberant syntax, such as in Perl, in favor of a sparser, less-cluttered grammar. As Alex Martelli put it: "To describe something as clever is not considered a compliment in the Python culture."[46] 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".[45]

Python's developers strive to avoid premature optimization, and moreover, reject patches to non-critical parts of CPython that would offer a marginal increase in speed at the cost of clarity.[47] When speed is important, a Python programmer can move time-critical functions to extension modules written in languages such as C, or try using PyPy, a just-in-time compiler. Cython is also available, which translates a Python script into C and makes direct C-level API calls into the Python interpreter.

An important goal of Python's developers is making it fun to use. This is reflected in the origin of the name, which comes from Monty Python,[48] and in an occasionally playful approach to tutorials and reference materials, such as using examples that refer to spam and eggs instead of the standard foo and bar.[49][50]

A common neologism in the Python community is pythonic, which can have a wide range of meanings related to program style. To say that code is pythonic is to say that it uses Python idioms well, that it is natural or shows fluency in the language, that it conforms with Python's minimalist philosophy and emphasis on readability. In contrast, code that is difficult to understand or reads like a rough transcription from another programming language is called unpythonic.

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

Syntax and semantics

Python is intended to be a highly readable language. It is designed to have an uncluttered visual layout, often using English keywords where other languages use punctuation. Further, Python has fewer syntactic exceptions and special cases than C or Pascal.[53]

Indentation

Python uses whitespace indentation to delimit blocks - rather than curly braces or keywords. An increase in indentation comes after certain statements; a decrease in indentation signifies the end of the current block.[54] This feature is also sometimes termed the off-side rule.

Statements and control flow

Python's statements include (among others):

Python does not support tail call optimization or first-class continuations, and, according to Guido van Rossum, it never will.[56][57] However, better support for coroutine-like functionality is provided in 2.5, by extending Python's generators.[58] Before 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, and as of Python 3.3, the information can be passed through multiple stack levels.[59]

Expressions

Some Python expressions are similar to languages such as C and Java, while some are not:

In Python, a distinction between expressions and statements is rigidly enforced, in contrast to languages such as Common Lisp, Scheme, or Ruby. This leads to duplicating some functionality. For example:

Statements cannot be a part of an expression, so list and other comprehensions or lambda expressions, all being expressions, cannot contain statements. A particular case of this is that an assignment statement such as a = 1 cannot form part of the conditional expression of a conditional statement. This has the advantage of avoiding a classic C error of mistaking an assignment operator = for an equality operator == in conditions: if (c = 1) { ... } is syntactically valid (but probably unintended) C code but if c = 1: ... causes a syntax error in Python.

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 (or this) in some other object-oriented programming languages (e.g., C++, Java, Objective-C, or Ruby).[65]

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 are instances of the metaclass type (itself an instance of itself), allowing metaprogramming and reflection.

Before version 3.0, Python had two kinds of classes: old-style and new-style.[66] 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).

Summary of Python 3's built-in types
Type Mutable Description Syntax example
str Immutable A character string: sequence of Unicode codepoints 'Wikipedia'
"Wikipedia"
"""Spanning
multiple
lines"""
bytearray Mutable Sequence of bytes bytearray(b'Some ASCII')
bytearray(b"Some ASCII")
bytearray([119, 105, 107, 105])
bytes Immutable Sequence of bytes b'Some ASCII'
b"Some ASCII"
bytes([119, 105, 107, 105])
list Mutable List, can contain mixed types [4.0, 'string', True]
tuple Immutable Can contain mixed types (4.0, 'string', True)
set Mutable Unordered set, contains no duplicates; can contain mixed types if hashable {4.0, 'string', True}
frozenset Immutable Unordered set, contains no duplicates; can contain mixed types if hashable frozenset([4.0, 'string', True])
dict Mutable Associative array (or dictionary) of key and value pairs; can contain mixed types (keys and values), keys must be a hashable type {'key1': 1.0, 3: False}
int Immutable Integer of unlimited magnitude[67] 42
float Immutable Floating point number, system-defined precision 3.1415927
complex Immutable Complex number with real and imaginary parts 3+2.7j
bool Immutable Boolean value True
False
ellipsis An ellipsis placeholder to be used as an index in NumPy arrays ...

Mathematics

Python has the usual C arithmetic operators (+, -, *, /, %). It also has ** for exponentiation, e.g. 5**3 == 125 and 9**0.5 == 3.0, and a new matrix multiply @ operator is included in version 3.5.[68]

The behavior of division has changed significantly over time:[69]

Rounding towards negative infinity, though different from most languages, adds consistency. For instance, it means that the equation (a+b) // b == a // b + 1 is always true. It also means that the equation b * (a // b) + a % b == a is valid for both positive and negative values of a. However, maintaining the validity of this equation means that while the result of a % b is, as expected, in the half-open interval [0, b), where b is a positive integer, it has to lie in the interval (b, 0] when b is negative.[70]

Python provides a round function for rounding a float to the nearest integer. For tie-breaking, versions before 3 use round-away-from-zero: round(0.5) is 1.0, round(-0.5) is −1.0.[71] Python 3 uses round to even: round(1.5) is 2, round(2.5) is 2.[72]

Python allows boolean expressions with multiple equality relations in a manner that is consistent with general use in mathematics. For example, the expression a < b < c tests whether a is less than b and b is less than c. C-derived languages interpret this expression differently: in C, the expression would first evaluate a < b, resulting in 0 or 1, and that result would then be compared with c.[73]

Python has extensive built-in support for arbitrary precision arithmetic. Integers are transparently switched from the machine-supported maximum fixed-precision (usually 32 or 64 bits), belonging to the python type int, to arbitrary precision, belonging to the python type long, where needed. The latter have an "L" suffix in their textual representation.[74] The Decimal type/class in module decimal (since version 2.4) provides decimal floating point numbers to arbitrary precision and several rounding modes.[75] The Fraction type in module fractions (since version 2.6) provides arbitrary precision for rational numbers.[76]

Due to Python's extensive mathematics library, it is frequently used as a scientific scripting language to aid in problems such as numerical data processing and manipulation.

Libraries

Python has a large standard library, commonly cited as one of Python's greatest strengths,[77] providing tools suited to many tasks. This is deliberate and has been described as a "batteries included"[29] Python philosophy. For Internet-facing applications, many standard formats and protocols (such as MIME and HTTP) are supported. Modules for creating graphical user interfaces, connecting to relational databases, pseudorandom number generators, arithmetic with arbitrary precision decimals,[78] manipulating regular expressions, and doing unit testing are also included.

Some parts of the standard library are covered by specifications (for example, the Web Server Gateway Interface (WSGI) implementation wsgiref follows PEP 333[79]), but most 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, only a few modules need altering or rewriting for variant implementations.

The standard library is not needed to run Python or embed it in an application. For example, Blender 2.49 omits most of the standard library.

As of November, 2016, the Python Package Index, the official repository containing third-party software for Python, contains over 92,000[80] packages offering a wide range of functionality, including:

Development environments

Most Python implementations (including CPython) can function as a command line interpreter, for which the user enters statements sequentially and receives the results immediately (read–eval–print loop (REPL)). In short, Python acts as a command-line interface or shell.

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

In addition to standard desktop integrated development environments (Python IDEs), there are also web browser-based IDEs, SageMath (intended for developing science and math-related Python programs), and a browser-based IDE and hosting environment, PythonAnywhere. Additionally, the Canopy IDE is also an option for creating programs written in Python.[81]

Implementations

The main Python implementation, named CPython, is written in C meeting the C89 standard.[82] It compiles Python programs into intermediate bytecode,[83] which is executed by the virtual machine.[84] CPython is distributed with a large standard library written in a mixture of C and Python. It is available in versions for many platforms, including Windows and most modern Unix-like systems. CPython was intended from almost its very conception to be cross-platform.[85]

PyPy is a fast, compliant[86] interpreter of Python 2.7 and 3.2. Its just-in-time compiler brings a significant speed improvement over CPython.[87] A version taking advantage of multi-core processors using software transactional memory is being created.[88]

Stackless Python is a significant fork of CPython that implements microthreads; it does not use the C memory stack, thus allowing massively concurrent programs. PyPy also has a stackless version.[89]

MicroPython is a lean, fast Python 3 variant that is optimised to run on microcontrollers.

Other just-in-time compilers have been developed in the past, but are now unsupported:

In 2005, Nokia released a Python interpreter for the Series 60 mobile phones named PyS60. It includes many of the modules from the CPython implementations and some added modules to integrate 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. The Nokia N900 also supports Python with GTK widget libraries, with the feature that programs can be both written and run on the target device.[91]

There are several 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:

A performance comparison of various Python implementations on a non-numerical (combinatorial) workload was presented at EuroSciPy '13.[92]

Development

Python's development is conducted largely through the Python Enhancement Proposal (PEP) process. The PEP process is the primary mechanism for proposing major new features, for collecting community input on an issue, and for documenting the design decisions that have gone into Python.[93] Outstanding PEPs are reviewed and commented upon by the Python community and by Van Rossum, the Python project's benevolent dictator for life.[93]

Enhancement of the language goes along with development of the CPython reference implementation. The mailing list python-dev is the primary forum for discussion about the language's development; specific issues are discussed in the Roundup bug tracker maintained at python.org.[94] Development takes place on a self-hosted source code repository running Mercurial.[95]

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

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

The community of Python developers has also contributed over 86,000[99] software modules (as of August 20, 2016) to the Python Package Index (PyPI), the official repository of third-party libraries for Python.

The major academic conference on Python is named PyCon. There are special mentoring programmes like the Pyladies.

Naming

Python's name is derived from the television series Monty Python's Flying Circus,[100] and it is common to use Monty Python references in example code.[101] For example, the metasyntactic variables often used in Python literature are spam and eggs, instead of the traditional foo and bar.[101][102] Also, the official Python documentation often contains various obscure Monty Python references.

The prefix Py- is 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 S60 operating system; PyQt and PyGTK, which bind Qt and GTK, respectively, to Python; and PyPy, a Python implementation originally written in Python.

Uses

Since 2003, Python has consistently ranked in the top ten most popular programming languages as measured by the TIOBE Programming Community Index. As of August 2016, it is the fifth most popular language.[103] It was ranked as Programming Language of the Year for the year 2007 and 2010.[24] It is the third most popular language whose grammatical syntax is not predominantly based on C, e.g. C++, Objective-C (note, C# and Java only have partial syntactic similarity to C, such as the use of curly braces, and are closer in similarity to each other than C).

An empirical study found scripting languages (such as Python) more productive than conventional languages (such as C and Java) for a programming problem involving string manipulation and search in a dictionary. Memory consumption was often "better than Java and not much worse than C or C++".[104]

Large organizations that make use of Python include Wikipedia, Google,[105] Yahoo!,[106] CERN,[107] NASA,[108] and some smaller ones like ILM,[109] and ITA.[110] The social news networking site, Reddit, is written entirely in Python.

Python can serve as a scripting language for web applications, e.g., via mod_wsgi for the Apache web server.[111] With Web Server Gateway Interface, a standard API has evolved to facilitate these applications. Web frameworks like Django, Pylons, Pyramid, TurboGears, web2py, Tornado, Flask, Bottle and Zope support developers in the design and maintenance of complex applications. Pyjamas and IronPython can be used to develop the client-side of Ajax-based applications. SQLAlchemy can be used as data mapper to a relational database. Twisted is a framework to program communications between computers, and is used (for example) by Dropbox.

Libraries like NumPy, SciPy and Matplotlib allow the effective use of Python in scientific computing,[112][113] with specialized libraries such as BioPython and Astropy providing domain-specific functionality. SageMath is a mathematical software with a "notebook" programmable in Python: its library covers many aspects of mathematics, including algebra, combinatorics, numerical mathematics, number theory, and calculus. The Python language re-implemented in Java platform is used for numeric and statistical calculations with 2D/3D visualization by the DMelt project.[114][115]

Python has been successfully embedded in many software products as a scripting language, including in finite element method software such as Abaqus, 3D parametric modeler like FreeCAD, 3D animation packages such as 3ds Max, Blender, Cinema 4D, Lightwave, Houdini, Maya, modo, MotionBuilder, Softimage, the visual effects compositor Nuke, 2D imaging programs like GIMP,[116] Inkscape, Scribus and Paint Shop Pro,[117] and musical notation program or scorewriter capella. GNU Debugger uses Python as a pretty printer to show complex structures such as C++ containers. Esri promotes Python as the best choice for writing scripts in ArcGIS.[118] It has also been used in several video games,[119][120] and has been adopted as first of the three available programming languages in Google App Engine, the other two being Java and Go.[121] Python is also used in algorithmic trading and quantitative finance.[122] Python can also be implemented in APIs of online brokerages that run on other languages by using wrappers.[123]

Python has been used in artificial intelligence tasks.[124][125][126][127] As a scripting language with module architecture, simple syntax and rich text processing tools, Python is often used for natural language processing tasks.[128]

Many operating systems include Python as a standard component; the language ships with most Linux distributions, AmigaOS 4, FreeBSD, NetBSD, OpenBSD and OS X, and can be used from the terminal. Many Linux distributions use installers written in Python: Ubuntu uses the Ubiquity installer, while Red Hat Linux and Fedora use the Anaconda installer. Gentoo Linux uses Python in its package management system, Portage.

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

Most of the Sugar software for the One Laptop per Child XO, now developed at Sugar Labs, is written in Python.[131]

The Raspberry Pi single-board computer project has adopted Python as its main user-programming language.

LibreOffice includes Python and intends to replace Java with Python. Python Scripting Provider is a core feature[132] since Version 4.0 from 7 February 2013.

Languages influenced by Python

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

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[142] and Erlang[143] because of Python's influence.

Python has been awarded a TIOBE Programming Language of the Year award twice (in 2007 and 2010), which is given to the language with the greatest growth in popularity over the course of a year, as measured by the TIOBE index.[144]

See also

* IPython

References

  1. "The History of Python: A Brief Timeline of Python". Blogger. 2009-01-20. Retrieved 2016-03-20.
  2. Hastings, Larry (2016-06-27). "Python 3.5.2 and Python 3.4.5 are now available". Python Insider. The Python Core Developers. Retrieved 2016-06-28.
  3. Peterson, Benjamin (2016-06-28). "Python 2.7.12 released". Python Insider. The Python Core Developers. Retrieved 2016-06-28.
  4. "Python Release Python 3.6.0b3". Python Software Foundation. Retrieved 3 November 2016.
  5. "Type hinting for Python". LWN.net. 24 December 2014. Retrieved 5 May 2015.
  6. File extension .pyo will be removed in Python 3.5. See PEP 0488
  7. Holth, Moore (30 March 2014). "PEP 0441 -- Improving Python ZIP Application Support". Retrieved 12 Nov 2015.
  8. 1 2 "Why was Python created in the first place?". General Python FAQ. Python Software Foundation. Retrieved 22 March 2007.
  9. Kuchling, Andrew M. (22 December 2006). "Interview with Guido van Rossum (July 1998)". amk.ca. Retrieved 12 March 2012.
  10. van Rossum, Guido (1993). "An Introduction to Python for UNIX/C Programmers". Proceedings of the NLUUG najaarsconferentie (Dutch UNIX users group). even though the design of C is far from ideal, its influence on Python is considerable.
  11. 1 2 "Classes". The Python Tutorial. Python Software Foundation. Retrieved 20 February 2012. It is a mixture of the class mechanisms found in C++ and Modula-3
  12. Simionato, Michele. "The Python 2.3 Method Resolution Order". Python Software Foundation. The C3 method itself has nothing to do with Python, since it was invented by people working on Dylan and it is described in a paper intended for lispers
  13. Kuchling, A. M. "Functional Programming HOWTO". Python v2.7.2 documentation. Python Software Foundation. Retrieved 9 February 2012.
  14. Schemenauer, Neil; Peters, Tim; Hetland, Magnus Lie (18 May 2001). "PEP 255 – Simple Generators". Python Enhancement Proposals. Python Software Foundation. Retrieved 9 February 2012.
  15. Smith, Kevin D.; Jewett, Jim J.; Montanaro, Skip; Baxter, Anthony (2 September 2004). "PEP 318 – Decorators for Functions and Methods". Python Enhancement Proposals. Python Software Foundation. Retrieved 24 February 2012.
  16. "More Control Flow Tools". Python 3 documentation. Python Software Foundation. Retrieved 24 July 2015.
  17. "CoffeeScript borrows chained comparisons from Python".
  18. "Genie Language - A brief guide". Retrieved 2015-12-28.
  19. "Perl and Python influences in JavaScript". www.2ality.com. 24 February 2013. Retrieved 15 May 2015.
  20. Rauschmayer, Axel. "Chapter 3: The Nature of JavaScript; Influences". O'Reilly, Speaking JavaScript. Retrieved 15 May 2015.
  21. 1 2 "Why We Created Julia". Julia website. February 2012. Retrieved 5 June 2014.
  22. Bini, Ola (2007). Practical JRuby on Rails Web 2.0 Projects: bringing Ruby on Rails to the Java platform. Berkeley: APress. p. 3. ISBN 978-1-59059-881-8.
  23. Lattner, Chris (3 June 2014). "Chris Lattner's Homepage". Chris Lattner. Retrieved 3 June 2014. The Swift language is the product of tireless effort from a team of language experts, documentation gurus, compiler optimization ninjas, and an incredibly important internal dogfooding group who provided feedback to help refine and battle-test ideas. Of course, it also greatly benefited from the experiences hard-won by many other languages in the field, drawing ideas from Objective-C, Rust, Haskell, Ruby, Python, C#, CLU, and far too many others to list.
  24. 1 2 TIOBE Software Index (2015). "TIOBE Programming Community Index Python". Retrieved 10 September 2015.
  25. "The RedMonk Programming Language Rankings: June 2015 – tecosystems". Redmonk.com. 1 July 2015. Retrieved 10 September 2015.
  26. Summerfield, Mark. Rapid GUI Programming with Python and Qt. Python is a very expressive language, which means that we can usually write far fewer lines of Python code than would be required for an equivalent application written in, say, C++ or Java
  27. McConnell, Steve (30 November 2009). Code Complete, p. 100. ISBN 9780735636972.
  28. Kuhlman, Dave. "A Python Book: Beginning Python, Advanced Python, and Python Exercises".
  29. 1 2 "About Python". Python Software Foundation. Retrieved 24 April 2012., second section "Fans of Python use the phrase "batteries included" to describe the standard library, which covers everything from asynchronous processing to zip files."
  30. "History and License". Retrieved 5 December 2016. "All Python releases are Open Source"
  31. 1 2 Venners, Bill (13 January 2003). "The Making of Python". Artima Developer. Artima. Retrieved 22 March 2007.
  32. van Rossum, Guido (20 January 2009). "A Brief Timeline of Python". The History of Python. Google. Retrieved 20 January 2009.
  33. van Rossum, Guido (29 August 2000). "SETL (was: Lukewarm about range literals)". Python-Dev (Mailing list). Retrieved 13 March 2011.
  34. van Rossum, Guido (1996). "Foreword for "Programming Python" (1st ed.)". Retrieved 10 July 2014.
  35. Kuchling, A. M.; Zadka, Moshe (16 October 2000). "What's New in Python 2.0". Python Software Foundation. Retrieved 11 February 2012.
  36. "Python 3.0 Release". Python Software Foundation. Retrieved 8 July 2009.
  37. van Rossum, Guido (5 April 2006). "PEP 3000 – Python 3000". Python Enhancement Proposals. Python Software Foundation. Retrieved 27 June 2009.
  38. The Cain Gang Ltd. "Python Metaclasses: Who? Why? When?". Archived from the original (PDF) on 10 December 2009. Retrieved 27 June 2009.
  39. "3.3. Special method names". The Python Language Reference. Python Software Foundation. Retrieved 27 June 2009.
  40. "PyDBC: method preconditions, method postconditions and class invariants for Python". Retrieved 24 September 2011.
  41. "Contracts for Python". Retrieved 24 September 2011.
  42. "PyDatalog". Retrieved 22 July 2012.
  43. 1 2 Hettinger, Raymond (30 January 2002). "PEP 289 – Generator Expressions". Python Enhancement Proposals. Python Software Foundation. Retrieved 19 February 2012.
  44. "6.5 itertools – Functions creating iterators for efficient looping". Docs.python.org. Retrieved 22 November 2016.
  45. 1 2 Peters, Tim (19 August 2004). "PEP 20 – The Zen of Python". Python Enhancement Proposals. Python Software Foundation. Retrieved 24 November 2008.
  46. Martelli, Alex; Ravenscroft, Anna; Ascher, David (2005). Python Cookbook, 2nd Edition. O'Reilly Media. p. 230. ISBN 978-0-596-00797-3.
  47. "Python Culture".
  48. "General Python FAQ - Why is it called Python?".
  49. "15 Ways Python Is a Powerful Force on the Web".
  50. "pprint - Data pretty printer - Python Documentation".
  51. Goodger, David. "Code Like a Pythonista: Idiomatic Python".
  52. "How to think like a Pythonista".
  53. "Is Python a good language for beginning programmers?". General Python FAQ. Python Software Foundation. Retrieved 21 March 2007.
  54. "Myths about indentation in Python". Secnetix.de. Retrieved 19 April 2011.
  55. Sweigart, Al (2010). "Appendix A: Differences Between Python 2 and 3". Invent Your Own Computer Games with Python (2 ed.). ISBN 978-0-9821060-1-3. Retrieved 20 February 2014.
  56. van Rossum, Guido (22 April 2009). "Tail Recursion Elimination". Neopythonic.blogspot.be. Retrieved 3 December 2012.
  57. van Rossum, Guido (9 February 2006). "Language Design Is Not Just Solving Puzzles". Artima forums. Artima. Retrieved 21 March 2007.
  58. van Rossum, Guido; Eby, Phillip J. (10 May 2005). "PEP 342 – Coroutines via Enhanced Generators". Python Enhancement Proposals. Python Software Foundation. Retrieved 19 February 2012.
  59. "PEP 380". Python.org. Retrieved 3 December 2012.
  60. "PEP 0465 -- A dedicated infix operator for matrix multiplication". python.org. Retrieved 1 January 2016.
  61. "Python 3.5.1 Release and Changelog". python.org. Retrieved 1 January 2016.
  62. "Chapter 15. Expressions - 15.21.1. Numerical Equality Operators == and !=". Oracle Corporation. Retrieved 28 August 2016.
  63. "Chapter 15. Expressions - 15.21.3. Reference Equality Operators == and !=". Oracle Corporation. Retrieved 28 August 2016.
  64. van Rossum, Guido; Hettinger, Raymond (7 February 2003). "PEP 308 – Conditional Expressions". Python Enhancement Proposals. Python Software Foundation. Retrieved 13 July 2011.
  65. "Why must 'self' be used explicitly in method definitions and calls?". Design and History FAQ. Python Software Foundation. Retrieved 19 February 2012.
  66. "The Python Language Reference, section 3.3. New-style and classic classes, for release 2.7.1". Retrieved 12 January 2011.
  67. Zadka, Moshe; van Rossum, Guido (11 March 2001). "PEP 237 – Unifying Long Integers and Integers". Python Enhancement Proposals. Python Software Foundation. Retrieved 24 September 2011.
  68. "PEP 465 -- A dedicated infix operator for matrix multiplication". python.org.
  69. Zadka, Moshe; van Rossum, Guido (11 March 2001). "PEP 238 – Changing the Division Operator". Python Enhancement Proposals. Python Software Foundation. Retrieved 23 October 2013.
  70. "Why Python's Integer Division Floors". Retrieved 25 August 2010.
  71. "round", The Python standard library, release 2.7, §2: Built-in functions, retrieved 14 August 2011
  72. "round", The Python standard library, release 3.2, §2: Built-in functions, retrieved 14 August 2011
  73. Python Essential Reference, David M Beazley
  74. "Built-in Type". docs.python.org.
  75. Batista, Facundo. "PEP 0327 -- Decimal Data Type". Python.org. Retrieved 2015-09-26.
  76. "What's New in Python 2.6 — Python v2.6.9 documentation". docs.python.org. Retrieved 2015-09-26.
  77. Piotrowski, Przemyslaw (July 2006). "Build a Rapid Web Development Environment for Python Server Pages and Oracle". Oracle Technology Network. Oracle. Retrieved 12 March 2012.
  78. Batista, Facundo (17 October 2003). "PEP 327 – Decimal Data Type". Python Enhancement Proposals. Python Software Foundation. Retrieved 24 November 2008.
  79. Eby, Phillip J. (7 December 2003). "PEP 333 – Python Web Server Gateway Interface v1.0". Python Enhancement Proposals. Python Software Foundation. Retrieved 19 February 2012.
  80. Debill, Erik. "Module Counts". ModuleCounts. Retrieved 3 November 2016.
  81. Enthought, Canopy. "Canopy". www.enthought.com. Retrieved 20 August 2016.
  82. van Rossum, Guido (5 June 2001). "PEP 7 – Style Guide for C Code". Python Enhancement Proposals. Python Software Foundation. Retrieved 24 November 2008.
  83. "CPython byte code". Docs.python.org. Retrieved 16 February 2016.
  84. "Python 2.5 internals" (PDF). Retrieved 19 April 2011.
  85. "An Interview with Guido van Rossum". Oreilly.com. Retrieved 24 November 2008.
  86. "PyPy compatibility". Pypy.org. Retrieved 3 December 2012.
  87. "speed comparison between CPython and Pypy". Speed.pypy.org. Retrieved 3 December 2012.
  88. "STM with threads". Morepypy.blogspot.be. 10 June 2012. Retrieved 3 December 2012.
  89. "Application-level Stackless features — PyPy 2.0.2 documentation". Doc.pypy.org. Retrieved 17 July 2013.
  90. "Plans for optimizing Python". Google Project Hosting. Google. 15 December 2009. Retrieved 24 September 2011.
  91. "Python on the Nokia N900". Stochastic Geometry.
  92. Murri, Riccardo (2013). Performance of Python runtimes on a non-numeric scientific code. European Conference on Python in Science (EuroSciPy). arXiv:1404.6388Freely accessible.
  93. 1 2 Warsaw, Barry; Hylton, Jeremy; Goodger, David (13 June 2000). "PEP 1 – PEP Purpose and Guidelines". Python Enhancement Proposals. Python Software Foundation. Retrieved 19 April 2011.
  94. Cannon, Brett. "Guido, Some Guys, and a Mailing List: How Python is Developed". python.org. Python Software Foundation. Archived from the original on 1 June 2009. Retrieved 27 June 2009.
  95. "Python Developer's Guide".
  96. Norwitz, Neal (8 April 2002). "[Python-Dev] Release Schedules (was Stability & change)". Retrieved 27 June 2009.
  97. Aahz; Baxter, Anthony (15 March 2001). "PEP 6 – Bug Fix Releases". Python Enhancement Proposals. Python Software Foundation. Retrieved 27 June 2009.
  98. "Python Buildbot". Python Developer’s Guide. Python Software Foundation. Retrieved 24 September 2011.
  99. DeBill, Erik. "Module Counts". www.modulecounts.com. Retrieved 20 August 2016.
  100. "General Python FAQ". Python v2.7.3 documentation. Docs.python.org. Retrieved 3 December 2012.
  101. 1 2 "Whetting Your Appetite". The Python Tutorial. Python Software Foundation. Retrieved 20 February 2012.
  102. "In Python, should I use else after a return in an if block?". Stack Overflow. Stack Exchange. 17 February 2011. Retrieved 6 May 2011.
  103. "TIOBE Index". TIOBE - The Software Quality Company. Retrieved 28 August 2016.
  104. Prechelt, Lutz (14 March 2000). "An empirical comparison of C, C++, Java, Perl, Python, Rexx, and Tcl" (PDF). Retrieved 30 August 2013.
  105. "Quotes about Python". Python Software Foundation. Retrieved 8 January 2012.
  106. "Organizations Using Python". Python Software Foundation. Retrieved 15 January 2009.
  107. "Python : the holy grail of programming". CERN Bulletin. CERN Publications (31/2006). 31 July 2006. Retrieved 11 February 2012.
  108. Shafer, Daniel G. (17 January 2003). "Python Streamlines Space Shuttle Mission Design". Python Software Foundation. Retrieved 24 November 2008.
  109. Fortenberry, Tim (17 January 2003). "Industrial Light & Magic Runs on Python". Python Software Foundation. Retrieved 11 February 2012.
  110. Taft, Darryl K. (5 March 2007). "Python Slithers into Systems". eWeek.com. Ziff Davis Holdings. Retrieved 24 September 2011.
  111. "Usage statistics and market share of Python for websites". 2012. Retrieved 18 December 2012.
  112. Oliphant, Travis (2007). "Python for Scientific Computing". Computing in Science and Engineering.
  113. Millman, K. Jarrod; Aivazis, Michael (2011). "Python for Scientists and Engineers". Computing in Science and Engineering. 13 (2): 9–12.
  114. Chekanov, S. (April 2016). Numeric Computation and Statistical Data Analysis on the Java Platform. London: Springer. p. 670. ISBN 978-3-319-28531-3.
  115. Chekanov, S. (2010). Scientific Data Analysis using Jython Scripting and Java. London: Springer. p. 600. ISBN 978-3-319-28531-3.
  116. "Installers for GIMP for Windows - Frequently Asked Questions". 26 July 2013. Retrieved 26 July 2013.
  117. "jasc psp9components". Archived from the original on 19 March 2008.
  118. "About getting started with writing geoprocessing scripts". ArcGIS Desktop Help 9.2. Environmental Systems Research Institute. 17 November 2006. Retrieved 11 February 2012.
  119. CCP porkbelly (24 August 2010). "Stackless Python 2.7". EVE Community Dev Blogs. CCP Games. As you may know, EVE has at its core the programming language known as Stackless Python.
  120. Caudill, Barry (20 September 2005). "Modding Sid Meier's Civilization IV". Sid Meier's Civilization IV Developer Blog. Firaxis Games. Archived from the original on 10 August 2010. we created three levels of tools ... The next level offers Python and XML support, letting modders with more experience manipulate the game world and everything in it.
  121. "Python Language Guide (v1.0)". Google Documents List Data API v1.0. Google. Archived from the original on 10 August 2010.
  122. "Python - Best Programming Language for Algorithmic Trading Systems". 2016-03-09. Retrieved 2016-10-03.
  123. "Trading with Interactive Brokers using Python: An IBPy Tutorial". 2016-09-19. Retrieved 2016-10-03.
  124. "Python for Artificial Intelligence". Wiki.python.org. 19 July 2012. Archived from the original on 1 November 2012. Retrieved 3 December 2012.
  125. Paine, Jocelyn, ed. (August 2005). "AI in Python". AI Expert Newsletter. Amzi!. Retrieved 11 February 2012.
  126. "PyAIML 0.8.5 : Python Package Index". Pypi.python.org. Retrieved 17 July 2013.
  127. Russell, Stuart J. & Norvig, Peter (2009). Artificial Intelligence: A Modern Approach (3rd ed.). Upper Saddle River, NJ: Prentice Hall. p. 1062. ISBN 978-0-13-604259-4. Retrieved 11 February 2012.
  128. "Natural Language Toolkit".
  129. "Immunity: Knowing You're Secure".
  130. "Corelabs site".
  131. "What is Sugar?". Sugar Labs. Retrieved 11 February 2012.
  132. "4.0 New Features and Fixes". LibreOffice.org. The Document Foundation. 2013. Retrieved 25 February 2013.
  133. "Gotchas for Python Users". boo.codehaus.org. Codehaus Foundation. Retrieved 24 November 2008.
  134. Esterbrook, Charles. "Acknowledgements". cobra-language.com. Cobra Language. Retrieved 7 April 2010.
  135. Esterbrook, Charles. "Comparison to Python". cobra-language.com. Cobra Language. Retrieved 7 April 2010.
  136. "Proposals: iterators and generators [ES4 Wiki]". wiki.ecmascript.org. Retrieved 24 November 2008.
  137. Kincaid, Jason (10 November 2009). "Google's Go: A New Programming Language That's Python Meets C++". TechCrunch. Retrieved 29 January 2010.
  138. Strachan, James (29 August 2003). "Groovy – the birth of a new dynamic language for the Java platform".
  139. Lin, Mike. "The Whitespace Thing for OCaml". Massachusetts Institute of Technology. Retrieved 12 April 2009.
  140. "An Interview with the Creator of Ruby". Linuxdevcenter.com. Retrieved 3 December 2012.
  141. Lattner, Chris (3 June 2014). "Chris Lattner's Homepage". Chris Lattner. Retrieved 3 June 2014. I started work on the Swift Programming Language in July of 2010. I implemented much of the basic language structure, with only a few people knowing of its existence. A few other (amazing) people started contributing in earnest late in 2011, and it became a major focus for the Apple Developer Tools group in July 2013 [...] drawing ideas from Objective-C, Rust, Haskell, Ruby, Python, C#, CLU, and far too many others to list.
  142. Kupries, Andreas; Fellows, Donal K. (14 September 2000). "TIP #3: TIP Format". tcl.tk. Tcl Developer Xchange. Retrieved 24 November 2008.
  143. Gustafsson, Per; Niskanen, Raimo (29 January 2007). "EEP 1: EEP Purpose and Guidelines". erlang.org. Retrieved 19 April 2011.
  144. "TIOBE Programming Community Index for March 2012". TIOBE Software. March 2012. Retrieved 25 March 2012.

Further reading

External links

Wikiversity has learning materials about Python (programming language)

This article is issued from Wikipedia - version of the 12/5/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.