Python (programming language)

Python
Paradigm Multi-paradigm: object-oriented, imperative, functional, procedural, reflective
Designed by Guido van Rossum
Developer Python Software Foundation
First appeared 1991
3.4.3 /
25 February 2015[1]
2.7.9 /
10 December 2014[2]
3.5.0a4 /
20 April 2015[3]
2.7.9 rc1 /
26 November 2014[4]
duck, dynamic, strong
OS Cross-platform
License Python Software Foundation License
.py, .pyw, .pyc, .pyo, .pyd
Website www.python.org

Python is a widely used general-purpose, high-level programming language.[17][18][19] Its design philosophy emphasizes code readability, and its syntax allows programmers to express concepts in fewer lines of code than would be possible in languages such as C++ or Java.[20][21] The language provides constructs intended to enable clear programs on both a small and large scale.[22]

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.[23]

Python interpreters are available for installation on many operating systems, allowing Python code execution on a wide variety of systems. Using third-party tools, such as Py2exe or Pyinstaller,[24] Python code can be packaged into stand-alone executable programs for some of the most popular operating systems, allowing for the distribution of Python-based software for use on those environments without requiring the installation of a Python interpreter.

CPython, the reference implementation of Python, is free and open-source software and has a community-based development model, as do nearly all of its alternative 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[25] and its implementation was started in December 1989[26] by Guido van Rossum at CWI in the Netherlands as a successor to the ABC language (itself inspired by SETL)[27] capable of exception handling and interfacing with the Amoeba operating system.[5] 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:[28]

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 included many major new features including a full garbage collector and support for Unicode. With this release the development process was changed and became more transparent and community-backed.[29]

Python 3.0 (also called Python 3000 or py3k), a major, backwards-incompatible release, was released on 3 December 2008[30] after a long period of testing. Many of its major features have been backported to the backwards-compatible Python 2.6 and 2.7.[31]

Features and philosophy

Python is a multi-paradigm programming language: 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[32] and by magic methods).[33] Many other paradigms are supported using extensions, including design by contract[34][35] and logic programming.[36]

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.

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

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

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 very start because of his frustrations with ABC (which espoused the opposite mindset).[25]

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."[40] 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".[39]

Python's developers strive to avoid 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.[41] When speed is important, Python programmers use PyPy, a just-in-time compiler, or move time-critical functions to extension modules written in languages such as C. 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 the Python developers is making Python fun to use. This is reflected in the origin of the name which comes from Monty Python,[42] 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.[43][44]

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.[45][46]

Syntax and semantics

Python is 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. Furthermore, Python has a smaller number of syntactic exceptions and special cases than C or Pascal.[47]

Indentation

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

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.[50][51] However, better support for coroutine-like functionality is provided in 2.5, by extending Python's generators.[52] 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, and as of Python 3.3, the information can be passed through multiple stack levels.[53]

Expressions

Python expressions are similar to languages such as C and Java:

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 some duplication of 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 valid 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).[55]

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".[56] 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 Description Syntax example
str A character string: an immutable sequence of Unicode codepoints. 'Wikipedia'
"Wikipedia"
"""Spanning
multiple
lines"""
bytearray A mutable sequence of bytes. bytearray(b'Some ASCII')
bytearray(b"Some ASCII")
bytearray([119, 105, 107, 105])
bytes An 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, frozenset Unordered set, contains no duplicates. A frozenset is immutable. Either can contain mixed types as long as they are hashable. {4.0, 'string', True}
frozenset([4.0, 'string', True])
dict A 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 An immutable integer of unlimited magnitude.[57] 42
float An immutable floating point number (system-defined precision). 3.1415927
complex An immutable complex number with real and imaginary parts. 3+2.7j
bool An 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**.5 == 3.0 and a new matrix multiply operator @ coming in 3.5.[58]

The behavior of division has changed significantly over time.[59]

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.[60]

Python provides a round function for rounding floats to integers. Versions before 3 use round-away-from-zero: round(0.5) is 1.0, round(-0.5) is −1.0.[61] Python 3 uses round-to-even: round(1.5) is 2, round(2.5) is 2.[62] The Decimal type/class in module decimal (since version 2.4) provides exact numerical representation and several rounding modes.

Python allows boolean expressions with multiple equality relations in a manner that is consistent with general usage 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.[63]

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

Libraries

Python has a large standard library, commonly cited as one of Python's greatest strengths,[64] providing tools suited to many tasks. This is deliberate and has been described as a "batteries included"[23] Python philosophy. For Internet-facing applications, a large number of 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,[65] manipulating regular expressions, and doing unit testing are also included.

Some parts of the standard library are covered by specifications (for example, the WSGI implementation wsgiref follows PEP 333[66]), 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.

The standard library is not essential to run Python or embed Python within an application. Blender 2.49, for instance, omits most of the standard library.

As of January 2015, the Python Package Index, the official repository of third-party software for Python, contains more than 54,000 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 (REPL). In short, Python acts as a shell.

Other shells add capabilities 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, retention of session state, and syntax highlighting.

In addition to standard desktop Python IDEs (integrated development environments), there are also browser-based IDEs, Sage (intended for developing science and math-related Python programs), and a browser-based IDE and hosting environment, PythonAnywhere.

Implementations

The main Python implementation, named CPython, is written in C meeting the C89 standard.[67] It compiles Python programs into intermediate bytecode,[68] which is executed by the virtual machine.[69] 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 Microsoft Windows and most modern Unix-like systems. CPython was intended from almost its very conception to be cross-platform.[70]

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

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.[74]

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 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. The Nokia N900 also supports Python with GTK widget libraries, with the feature that programs can be both written and run on the device itself.

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.[76]

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.[77] Outstanding PEPs are reviewed and commented upon by the Python community and by Van Rossum, the Python project's BDFL.[77]

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.[78] Development takes place on a self-hosted source code repository running Mercurial.[79]

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

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.[82]

The community of Python developers has also contributed over 54,000 software modules (as of January 2015) to the Python Package Index (called 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,[83] and it is common to use Monty Python references in example code.[84] For example, the metasyntactic variables often used in Python literature are spam and eggs, instead of the traditional foo and bar.[84][85] As well as this, 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.

Use

Since 2008, Python has consistently ranked in the top eight most popular programming languages as measured by the TIOBE Programming Community Index.[17] It is the third most popular language whose grammatical syntax is not predominantly based on C, e.g. C++, C#, Objective-C, Java.

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++".[86]

Large organizations that make use of Python include Google,[87] Yahoo!,[88] CERN,[89] NASA,[90] and some smaller ones like ILM,[91] and ITA.[92]

Python can serve as a scripting language for web applications, e.g., via mod wsgi for the Apache web server.[93] With Web Server Gateway Interface, a standard API has evolved to facilitate these applications. Web application frameworks like Django, Pylons, Pyramid, TurboGears, web2py, Tornado, Flask 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,[94][95] with specialized libraries such as BioPython and Astropy providing domain-specific functionality. Sage 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.

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 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,[96] Inkscape, Scribus and Paint Shop Pro,[97] 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.[98] It has also been used in several video games,[99][100] and has been adopted as first of the three available programming languages in Google App Engine, the other two being Java and Go.[101]

Python has also been used in artificial intelligence tasks.[102][103][104][105] As a scripting language with module architecture, simple syntax and rich text processing tools, Python is often used for natural language processing tasks.[106]

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. A number of 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.[107][108]

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

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

LibreOffice included Python and intends to replace Java with Python. Python Scripting Provider is a core feature[110] 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[120] and Erlang[121] 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.[122]

See also

References

  1. "Python 3.4.3". Python Software Foundation. Retrieved 27 February 2015.
  2. "Python 2.7.9 Release". Python Software Foundation. Retrieved 10 December 2014.
  3. "What’s New In Python 3.5". Python Software Foundation. Retrieved 20 April 2015.
  4. "Python 2.7.9 rc1 Release". Python Software Foundation. Retrieved 26 November 2014.
  5. 5.0 5.1 "Why was Python created in the first place?". General Python FAQ. Python Software Foundation. Retrieved 22 March 2007.
  6. Kuchling, Andrew M. (22 December 2006). "Interview with Guido van Rossum (July 1998)". amk.ca. Retrieved 12 March 2012.
  7. 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.
  8. 8.0 8.1 "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
  9. 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
  10. Kuchling, A. M. "Functional Programming HOWTO". Python v2.7.2 documentation. Python Software Foundation. Retrieved 9 February 2012.
  11. Schemenauer, Neil; Peters, Tim; Hetland, Magnus Lie (18 May 2001). "PEP 255 – Simple Generators". Python Enhancement Proposals. Python Software Foundation. Retrieved 9 February 2012.
  12. 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.
  13. "More Control Flow Tools". Python 3 documentation. Python Software Foundation. Retrieved 5 August 2012.
  14. "Why We Created Julia". Julia website. February 2012. Retrieved 5 June 2014.
  15. 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.
  16. 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.
  17. 17.0 17.1 TIOBE Software Index (2012). "TIOBE Programming Community Index Python". Retrieved 15 October 2012.
  18. "Programming Language Trends - O'Reilly Radar". Radar.oreilly.com. 2 August 2006. Retrieved 17 July 2013.
  19. "The RedMonk Programming Language Rankings: January 2013 – tecosystems". Redmonk.com. 28 February 2013. Retrieved 17 July 2013.
  20. 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
  21. McConnell, Steve (30 November 2009). Code Complete, p. 100. ISBN 9780735636972.
  22. Kuhlman, Dave. "A Python Book: Beginning Python, Advanced Python, and Python Exercises".
  23. 23.0 23.1 "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."
  24. "PyInstaller Home Page". Retrieved 27 January 2014.
  25. 25.0 25.1 Venners, Bill (13 January 2003). "The Making of Python". Artima Developer. Artima. Retrieved 22 March 2007.
  26. van Rossum, Guido (20 January 2009). "A Brief Timeline of Python". The History of Python. Google. Retrieved 20 January 2009.
  27. van Rossum, Guido (29 August 2000). "SETL (was: Lukewarm about range literals)". Python-Dev (Mailing list). Retrieved 13 March 2011.
  28. van Rossum, Guido (1996). "Foreword for "Programming Python" (1st ed.)". Retrieved 10 July 2014.
  29. Kuchling, A. M.; Zadka, Moshe (16 October 2000). "What's New in Python 2.0". Python Software Foundation. Retrieved 11 February 2012.
  30. "Python 3.0 Release". Python Software Foundation. Retrieved 8 July 2009.
  31. van Rossum, Guido (5 April 2006). "PEP 3000 – Python 3000". Python Enhancement Proposals. Python Software Foundation. Retrieved 27 June 2009.
  32. The Cain Gang Ltd. "Python Metaclasses: Who? Why? When?". Archived from the original (PDF) on 10 December 2009. Retrieved 27 June 2009.
  33. "3.3. Special method names". The Python Language Reference. Python Software Foundation. Retrieved 27 June 2009.
  34. "PyDBC: method preconditions, method postconditions and class invariants for Python". Retrieved 24 September 2011.
  35. "Contracts for Python". Retrieved 24 September 2011.
  36. "PyDatalog". Retrieved 22 July 2012.
  37. 37.0 37.1 Hettinger, Raymond (30 January 2002). "PEP 289 – Generator Expressions". Python Enhancement Proposals. Python Software Foundation. Retrieved 19 February 2012.
  38. "6.5 itertools – Functions creating iterators for efficient looping". Docs.python.org. Retrieved 24 November 2008.
  39. 39.0 39.1 Peters, Tim (19 August 2004). "PEP 20 – The Zen of Python". Python Enhancement Proposals. Python Software Foundation. Retrieved 24 November 2008.
  40. Alex Martelli, Python Cookbook (2nd ed., p. 230)
  41. "Python Culture".
  42. "General Python FAQ - Why is it called Python?".
  43. "15 Ways Python Is a Powerful Force on the Web".
  44. "pprint - Data pretty printer - Python Documentation".
  45. Goodger, David. "Code Like a Pythonista: Idiomatic Python".
  46. "How to think like a Pythonista".
  47. "Is Python a good language for beginning programmers?". General Python FAQ. Python Software Foundation. Retrieved 21 March 2007.
  48. "Myths about indentation in Python". Secnetix.de. Retrieved 19 April 2011.
  49. 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.
  50. van Rossum, Guido (22 April 2009). "Tail Recursion Elimination". Neopythonic.blogspot.be. Retrieved 3 December 2012.
  51. van Rossum, Guido (9 February 2006). "Language Design Is Not Just Solving Puzzles". Artima forums. Artima. Retrieved 21 March 2007.
  52. 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.
  53. "PEP 380". Python.org. Retrieved 3 December 2012.
  54. van Rossum, Guido; Hettinger, Raymond (7 February 2003). "PEP 308 – Conditional Expressions". Python Enhancement Proposals. Python Software Foundation. Retrieved 13 July 2011.
  55. "Why must 'self' be used explicitly in method definitions and calls?". Design and History FAQ. Python Software Foundation. Retrieved 19 February 2012.
  56. "The Python Language Reference, section 3.3. New-style and classic classes, for release 2.7.1". Retrieved 12 January 2011.
  57. 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.
  58. "PEP 465 -- A dedicated infix operator for matrix multiplication". python.org.
  59. Zadka, Moshe; van Rossum, Guido (11 March 2001). "PEP 238 – Changing the Division Operator". Python Enhancement Proposals. Python Software Foundation. Retrieved 23 October 2013.
  60. "Why Python's Integer Division Floors". Retrieved 25 August 2010.
  61. "round", The Python standard library, release 2.7, §2: Built-in functions, retrieved 14 August 2011
  62. "round", The Python standard library, release 3.2, §2: Built-in functions, retrieved 14 August 2011
  63. Python Essential Reference, David M Beazley
  64. Piotrowski, Przemyslaw (July 2006). "Build a Rapid Web Development Environment for Python Server Pages and Oracle". Oracle Technology Network. Oracle. Retrieved 12 March 2012.
  65. Batista, Facundo (17 October 2003). "PEP 327 – Decimal Data Type". Python Enhancement Proposals. Python Software Foundation. Retrieved 24 November 2008.
  66. 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.
  67. van Rossum, Guido (5 June 2001). "PEP 7 – Style Guide for C Code". Python Enhancement Proposals. Python Software Foundation. Retrieved 24 November 2008.
  68. "CPython byte code". Docs.python.org. Retrieved 19 April 2011.
  69. "Python 2.5 internals" (PDF). Retrieved 19 April 2011.
  70. "An Interview with Guido van Rossum". Oreilly.com. Retrieved 24 November 2008.
  71. "PyPy compatibility". Pypy.org. Retrieved 3 December 2012.
  72. "speed comparison between CPython and Pypy". Speed.pypy.org. Retrieved 3 December 2012.
  73. "STM with threads". Morepypy.blogspot.be. 10 June 2012. Retrieved 3 December 2012.
  74. "Application-level Stackless features — PyPy 2.0.2 documentation". Doc.pypy.org. Retrieved 17 July 2013.
  75. "Plans for optimizing Python". Google Project Hosting. Google. 15 December 2009. Retrieved 24 September 2011.
  76. Murri, Riccardo (2013). Performance of Python runtimes on a non-numeric scientific code. European Conference on Python in Science (EuroSciPy).
  77. 77.0 77.1 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.
  78. Cannon, Brett. "Guido, Some Guys, and a Mailing List: How Python is Developed". python.org. Python Software Foundation. Retrieved 27 June 2009.
  79. "Python Developer's Guide".
  80. Norwitz, Neal (8 April 2002). "[Python-Dev] Release Schedules (was Stability & change)". Retrieved 27 June 2009.
  81. Aahz; Baxter, Anthony (15 March 2001). "PEP 6 – Bug Fix Releases". Python Enhancement Proposals. Python Software Foundation. Retrieved 27 June 2009.
  82. "Python Buildbot". Python Developer’s Guide. Python Software Foundation. Retrieved 24 September 2011.
  83. "General Python FAQ". Python v2.7.3 documentation. Docs.python.org. Retrieved 3 December 2012.
  84. 84.0 84.1 "Whetting Your Appetite". The Python Tutorial. Python Software Foundation. Retrieved 20 February 2012.
  85. "In Python, should I use else after a return in an if block?". Stack Overflow. Stack Exchange. 17 February 2011. Retrieved 6 May 2011.
  86. Prechelt, Lutz (14 March 2000). "An empirical comparison of C, C++, Java, Perl, Python, Rexx, and Tcl" (PDF). Bibliography of Lutz Prechelt. Retrieved 30 August 2013.
  87. "Quotes about Python". Python Software Foundation. Retrieved 8 January 2012.
  88. "Organizations Using Python". Python Software Foundation. Retrieved 15 January 2009.
  89. "Python : the holy grail of programming". CERN Bulletin (CERN Publications) (31/2006). 31 July 2006. Retrieved 11 February 2012.
  90. Shafer, Daniel G. (17 January 2003). "Python Streamlines Space Shuttle Mission Design". Python Software Foundation. Retrieved 24 November 2008.
  91. Fortenberry, Tim (17 January 2003). "Industrial Light & Magic Runs on Python". Python Software Foundation. Retrieved 11 February 2012.
  92. Taft, Darryl K. (5 March 2007). "Python Slithers into Systems". eWeek.com. Ziff Davis Holdings. Retrieved 24 September 2011.
  93. "Usage statistics and market share of Python for websites". 2012. Retrieved 18 December 2012.
  94. Oliphant, Travis (2007). "Python for Scientific Computing". Computing in Science and Engineering.
  95. Millman, K. Jarrod; Aivazis, Michael (2011). "Python for Scientists and Engineers". Computing in Science and Engineering 13 (2): 9–12.
  96. "Installers for GIMP for Windows - Frequently Asked Questions". 26 July 2013. Retrieved 26 July 2013.
  97. "jasc psp9components".
  98. "About getting started with writing geoprocessing scripts". ArcGIS Desktop Help 9.2. Environmental Systems Research Institute. 17 November 2006. Retrieved 11 February 2012.
  99. 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.
  100. 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.
  101. "Python Language Guide (v1.0)". Google Documents List Data API v1.0. Google. Archived from the original on 10 August 2010.
  102. "Python for Artificial Intelligence". Wiki.python.org. 19 July 2012. Retrieved 3 December 2012.
  103. Paine, Jocelyn, ed. (August 2005). "AI in Python". AI Expert Newsletter (Amzi!). Retrieved 11 February 2012.
  104. "PyAIML 0.8.5 : Python Package Index". Pypi.python.org. Retrieved 17 July 2013.
  105. 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.
  106. "Natural Language Toolkit".
  107. "Immunity: Knowing You're Secure".
  108. "Corelabs site".
  109. "What is Sugar?". Sugar Labs. Retrieved 11 February 2012.
  110. "4.0 New Features and Fixes". LibreOffice.org. The Document Foundation. 2013. Retrieved 25 February 2013.
  111. "Gotchas for Python Users". boo.codehaus.org. Codehaus Foundation. Retrieved 24 November 2008.
  112. Esterbrook, Charles. "Acknowledgements". cobra-language.com. Cobra Language. Retrieved 7 April 2010.
  113. Esterbrook, Charles. "Comparison to Python". cobra-language.com. Cobra Language. Retrieved 7 April 2010.
  114. "Proposals: iterators and generators [ES4 Wiki]". wiki.ecmascript.org. Retrieved 24 November 2008.
  115. Kincaid, Jason (10 November 2009). "Google’s Go: A New Programming Language That’s Python Meets C++". TechCrunch. Retrieved 29 January 2010.
  116. Strachan, James (29 August 2003). "Groovy – the birth of a new dynamic language for the Java platform".
  117. Lin, Mike. "The Whitespace Thing for OCaml". Massachusetts Institute of Technology. Retrieved 12 April 2009.
  118. "An Interview with the Creator of Ruby". Linuxdevcenter.com. Retrieved 3 December 2012.
  119. 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.
  120. Kupries, Andreas; Fellows, Donal K. (14 September 2000). "TIP #3: TIP Format". tcl.tk. Tcl Developer Xchange. Retrieved 24 November 2008.
  121. Gustafsson, Per; Niskanen, Raimo (29 January 2007). "EEP 1: EEP Purpose and Guidelines". erlang.org. Retrieved 19 April 2011.
  122. "TIOBE Programming Community Index for March 2012". TIOBE Software. March 2012. Retrieved 25 March 2012.

Further reading

External links