Python (Programming Language)
Python (Programming Language)
Guido van Rossum began working on Python in the late 1980s as a successor to the ABC
programming language and first released it in 1991 as Python 0.9.0.[35] Python 2.0 was
released in 2000. Python 3.0, released in 2008, was a major revision not completely
backward-compatible with earlier versions. Python 2.7.18, released in 2020, was the last
release of Python 2.[36]
Python consistently ranks as one of the most popular programming languages, and has
gained widespread use in the machine learning community.[37][38][39][40]
History
Python was invented in the late 1980s[41] by Guido van Rossum at Centrum Wiskunde &
Informatica (CWI) in the Netherlands as a successor to the ABC programming language, which
was inspired by SETL,[42] capable of exception handling and interfacing with the Amoeba
operating system.[12] Its implementation began in December 1989.[43] Van Rossum
shouldered sole responsibility for the
Python
project, as the lead developer, until 12 July
2018, when he announced his "permanent
vacation" from his responsibilities as
Python's "benevolent dictator for life"
(BDFL), a title the Python community bestowed
upon him to reflect his long-term
commitment as the project's chief decision-
Paradigm Multi-paradigm:
[44]
maker (he has since come out of object-oriented,[1]
retirement and is self-titled "BDFL- procedural
emeritus"). In January 2019, active Python (imperative),
core developers elected a five-member functional,
Steering Council to lead the project.[45][46] structured,
reflective
Python 2.0 was released on 16 October 2000,
Designed by Guido van Rossum
with many major new features such as list
comprehensions, cycle-detecting garbage Developer Python Software
collection, reference counting, and Unicode Foundation
support.[47] Python 3.0 was released on 3
First appeared 20 February 1991[2]
December 2008, with many of its major
features backported to Python 2.6.x[48] and
Stable release 3.13.0 / 7 October
2.7.x. Releases of Python 3 include the 2to3
2024
utility, which automates the translation of
Python 2 code to Python 3.[49] Typing discipline duck, dynamic,
strong;[3] optional
Python 2.7's end-of-life was initially set for type annotations
2015, then postponed to 2020 out of concern (since 3.5, but
that a large body of existing code could not those hints are
ignored, except
easily be forward-ported to Python 3.[50][51]
with unofficial
No further security patches or other
tools)[4]
[52][53]
improvements will be released for it.
Currently only 3.9 and later are supported OS Tier 1: 64-bit Linux,
(2023 security issues were fixed in e.g. 3.7.17, macOS; 64- and 32-
the final 3.7.x release[54]). While Python 2.7 bit Windows 10+[5]
Tier 2: E.g. 32-bit
and older is officially unsupported, a
WebAssembly (WASI)
different unofficial Python implementation,
Tier 3: 64-bit
PyPy, continues to support Python 2, i.e.
Android,[6] iOS,
"2.7.18+" (plus 3.10), with the plus meaning FreeBSD, and (32-
and Python 3.12 adds another 5% on top of JavaScript,[25][26] Julia,[27] Mojo,[28] Nim,
Ring,[29] Ruby,[30] Swift[31]
that. It also has improved error messages,
and many other changes. Python Programming at Wikibooks
Python 3.13 introduces more syntax for types, a new and improved interactive interpreter
(REPL), featuring multi-line editing and color support; an incremental garbage collector
(producing shorter pauses for collection in programs with a lot of objects, and addition to
the improved speed in 3.11 and 3.12), and an experimental just-in-time (JIT) compiler (such
features, can/needs to be enabled specifically for the increase in speed),[66] and an
experimental free-threaded build mode, which disables the global interpreter lock (GIL),
allowing threads to run more concurrently, that latter feature enabled with python3.13t
or python3.13t.exe .
Python 3.13 introduces some change in behavior, i.e. new "well-defined semantics", fixing
bugs (plus many removals of deprecated classes, functions and methods, and removed some
of the C API and outdated modules): "The [old] implementation of locals() and
frame.f_locals is slow, inconsistent and buggy [and it has] has many corner cases and
oddities. Code that works around those may need to be changed. Code that uses locals()
for simple templating, or print debugging, will continue to work correctly."[67]
Since 7 October 2024, Python 3.13 is the latest stable release, and 3.13 and 3.12 are the only
versions with active (as opposed to just security) support and Python 3.9 is the oldest
supported version of Python (albeit in the 'security support' phase), due to Python 3.8
reaching end-of-life.[68] Starting with 3.13, it and later versions have 2 years of full support
(up from one and a half); followed by 3 years of security support (for same total support as
before).
Some (more) standard library modules and many deprecated classes, functions and methods,
will be removed in Python 3.15 or 3.16.[69][70]
Python 3.14 (now in alpha 1)[71] has changes for annotations, with PEP 649 "[preserving]
nearly all existing behavior of annotations from stock semantics".[72]
Its design offers some support for functional programming in the Lisp tradition. It has
filter , map and reduce functions; list comprehensions, dictionaries, sets, and
generator expressions.[80] The standard library has two modules ( itertools and
functools ) that implement functional tools borrowed from Haskell and Standard ML.[81]
Its core philosophy is summarized in the Zen of Python (PEP 20), which includes aphorisms
such as:[82]
Readability counts.
However, Python features regularly violate these principles and have received criticism for
adding unnecessary language bloat.[83] Responses to these criticisms are that the Zen of
Python is a guideline rather than a rule.[84] The addition of some new features had been so
controversial that Guido van Rossum resigned as Benevolent Dictator for Life following
vitriol over the addition of the assignment expression operator in Python 3.8.[85][86]
Nevertheless, rather than building all of its functionality into its core, Python was designed
to be highly extensible via modules. This compact modularity has made it particularly
popular as a means of adding programmable interfaces to existing applications. Van
Rossum's vision of a small core language with a large standard library and easily extensible
interpreter stemmed from his frustrations with ABC, which espoused the opposite
approach.[41]
Python claims to strive for a simpler, less-cluttered syntax and grammar while giving
developers a choice in their coding methodology. In contrast to Perl's "there is more than
one way to do it" motto, Python embraces a "there should be one—and preferably only one—
obvious way to do it." philosophy.[82] In practice, however, Python provides many ways to
achieve the same task. There are, for example, at least three ways to format a string literal,
with no certainty as to which one a programmer should use.[87] Alex Martelli, a Fellow at the
Python Software Foundation and Python book author, wrote: "To describe something as
'clever' is not considered a compliment in the Python culture."[88]
Python's developers usually strive to avoid premature optimization and reject patches to
non-critical parts of the CPython reference implementation that would offer marginal
increases in speed at the cost of clarity.[89] Execution speed can be improved by moving
speed-critical functions to extension modules written in languages such as C, or by using a
just-in-time compiler like PyPy. It is also possible to cross-compile to other languages, but
it either doesn't provide the full speed-up that might be expected, since Python is a very
dynamic language, or a restricted subset of Python is compiled, and possibly semantics are
slightly changed.[90]
Python's developers aim for it to be fun to use. This is reflected in its name—a tribute to the
British comedy group Monty Python[91]—and in occasionally playful approaches to tutorials
and reference materials, such as the use of the terms "spam" and "eggs" (a reference to a
Monty Python sketch) in examples, instead of the often-used "foo" and "bar".[92][93] A
common neologism in the Python community is pythonic, which has a wide range of meanings
related to program style. "Pythonic" code may use Python idioms well, be natural or show
fluency in the language, or conform with Python's minimalist philosophy and emphasis on
readability. Code that is difficult to understand or reads like a rough transcription from
another programming language is called unpythonic.[94]
Python is meant to be an easily readable language. Its formatting is visually uncluttered and
often uses English keywords where other languages use punctuation. Unlike many other
languages, it does not use curly brackets to delimit blocks, and semicolons after statements
are allowed but rarely used. It has fewer syntactic exceptions and special cases than C or
Pascal.[95]
Indentation
Python uses whitespace indentation, rather than curly brackets or keywords, to delimit
blocks. An increase in indentation comes after certain statements; a decrease in indentation
signifies the end of the current block.[96] Thus, the program's visual structure accurately
represents its semantic structure.[97] This feature is sometimes termed the off-side rule.
Some other languages use indentation this way; but in most, indentation has no semantic
meaning. The recommended indent size is four spaces.[98]
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 (or new syntax except* in Python 3.11 for exception
groups[99]); it also ensures that clean-up code in a finally block is always run
regardless of how the block exits
The raise statement, used to raise a specified exception or re-raise a caught exception
The class statement, which executes a block of code and attaches its local namespace to
a class, for use in object-oriented programming
The with statement, which encloses a code block within a context manager (for example,
acquiring a lock before it is run, then releasing the lock; or opening and closing a file),
allowing resource-acquisition-is-initialization (RAII)-like behavior and replacing a
common try/finally idiom[100]
The continue statement, which skips the rest of the current iteration and continues
with the next
The del statement, which removes a variable—deleting the reference from the name to
the value, and producing an error if the variable is referred to before it is redefined
The pass statement, serving as a NOP, syntactically needed to create an empty code block
The assert statement, used in debugging to check for conditions that should apply
The yield statement, which returns a value from a generator function (and also an
operator); used to implement coroutines
The import and from statements, used to import modules whose functions or variables
can be used in the current program
The match and case statements, an analog of the switch statement construct, that
compares an expression against one or more cases as a control-of-flow measure.
Expressions
Python uses the + operator for string concatenation. Python uses the * operator for
duplicating a string a specified number of times.
The @ infix operator. It is intended to be used by libraries such as NumPy for matrix
multiplication.[106][107]
The syntax := , called the "walrus operator", was introduced in Python 3.8. It assigns
values to variables as part of a larger expression.[108]
Python has a type of expression named a list comprehension, and a more general
expression named a generator expression.[80]
Anonymous functions are implemented using lambda expressions; however, there may be
only one expression in each body.
[109]
Conditional expressions are written as x if c else y (different in order of
operands from the c ? x : y operator common to many other languages).
Python makes a distinction between lists and tuples. Lists are written as [1, 2, 3] , are
mutable, and cannot be used as the keys of dictionaries (dictionary keys must be
immutable in Python). Tuples, written as (1, 2, 3) , are immutable and thus can be used
as keys of dictionaries, provided all of the tuple's elements are immutable. The +
operator can be used to concatenate two tuples, which does not directly modify their
contents, but produces a new tuple containing the elements of both. Thus, given the
variable t initially equal to (1, 2, 3) , executing t = t + (4, 5) first evaluates t
+ (4, 5) , which yields (1, 2, 3, 4, 5) , which is then assigned back to t —thereby
effectively "modifying the contents" of t while conforming to the immutable nature of
tuple objects. Parentheses are optional for tuples in unambiguous contexts.[110]
Python has a "string format" operator % that functions analogously to printf format
strings in C—e.g. "spam=%s eggs=%d" % ("blah", 2) evaluates to "spam=blah
eggs=2" . In Python 2.6+ and 3+, this was supplemented by the format() method of the
str class, e.g. "spam={0} eggs={1}".format("blah", 2) . Python 3.6 added "f-
strings": spam = "blah"; eggs = 2; f'spam={spam} eggs={eggs}' .[112]
Strings in Python can be concatenated by "adding" them (with the same operator as for
adding integers and floats), e.g. "spam" + "eggs" returns "spameggs" . If strings
contain numbers, they are added as strings rather than integers, e.g. "2" + "2"
returns "22" .
Triple-quoted (beginning and ending with three single or double quotes), which may
span multiple lines and function like here documents in shells, Perl, and Ruby.
Raw string varieties, denoted by prefixing the string literal with r . Escape sequences
are not interpreted; hence raw strings are useful where literal backslashes are
common, such as regular expressions and Windows-style paths. (Compare " @ -
quoting" in C#.)
Python has array index and array slicing expressions in lists, denoted as a[key] ,
a[start:stop] or a[start:stop:step] . Indexes are zero-based, and negative
indexes are relative to the end. Slices take elements from the start index up to, but not
including, the stop index. The third slice parameter, called step or stride, allows elements
to be skipped and reversed. Slice indexes may be omitted—for example, a[:] returns a
copy of the entire list. Each element of a slice is a shallow copy.
The eval() vs. exec() built-in functions (in Python 2, exec is a statement); the
former is for expressions, the latter is for statements
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, Ruby).[113] Python also
provides methods, often called dunder methods (due to their names beginning and ending
with double-underscores), to allow user-defined classes to modify how they are handled by
native operations including length, comparison, in arithmetic operations and type
conversion.[114]
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 it
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, 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 (both using the same syntax): old-style
and new-style;[115] current Python versions only support the semantics of the new style.
Python supports optional type annotations.[4][116] These annotations are not enforced by the
language, but may be used by external tools such as mypy to catch errors.[117][118] Mypy also
supports a Python compiler called mypyc, which leverages type annotations for
optimization.[119]
Summary of Python 3's built-in types
True
bool immutable Boolean value
False
bytearray(b'Some
ASCII')
bytearray(b"Some
bytearray mutable Sequence of bytes
ASCII")
bytearray([119,
105, 107, 105])
b'Some ASCII'
b"Some ASCII"
bytes immutable Sequence of bytes
bytes([119, 105,
107, 105])
Double-precision floating-point
number. The precision is machine-
float immutable dependent but in practice is generally 1.33333
implemented as a 64-bit IEEE 754
number with 53 bits of precision.[120]
[4.0, 'string',
list mutable List, can contain mixed types True]
[]
{4.0, 'string',
Unordered set, contains no duplicates;
set mutable True}
can contain mixed types, if hashable
set()
'Wikipedia'
"Wikipedia"
"""Spanning
multiple
A character string: sequence of Unicode lines"""
str immutable
codepoints
Spanning
multiple
lines
(4.0, 'string',
True)
tuple immutable Can contain mixed types ('single
element',)
()
Arithmetic operations
Python has the usual symbols for arithmetic operators ( + , - , * , / ), the floor division
operator // and the modulo operation % (where the remainder can be negative, e.g. 4 %
-3 == -2 ). It also has ** for exponentiation, e.g. 5**3 == 125 and 9**0.5 == 3.0 ,
and a matrix‑multiplication operator @ .[123] These operators work like in traditional math;
with the same precedence rules, the operators infix ( + and - can also be unary to
represent positive and negative numbers respectively).
The division between integers produces floating-point results. The behavior of division has
changed significantly over time:[124]
Current Python (i.e. since 3.0) changed / to always be floating-point division, e.g.
5/2 == 2.5 .
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.[125]
Python provides a round function for rounding a float to the nearest integer. For tie-
breaking, Python 3 uses round to even: round(1.5) and round(2.5) both produce
2 .[126] Versions before 3 used round-away-from-zero: round(0.5) is 1.0 ,
round(-0.5) is −1.0 .[127]
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 .[128] 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 .[129]
Python uses arbitrary-precision arithmetic for all integer operations. The Decimal
type/class in the decimal module provides decimal floating-point numbers to a pre-
defined arbitrary precision and several rounding modes.[130] The Fraction class in the
fractions module provides arbitrary precision for rational numbers.[131]
Due to Python's extensive mathematics library, and the third-party library NumPy that
further extends the native capabilities, it is frequently used as a scientific scripting
language to aid in problems such as numerical data processing and manipulation.[132][133]
Programming examples
print('Hello, world!')
Program to calculate the factorial of a positive integer:
Libraries
Python's large standard library[134] provides tools suited to many tasks and is commonly
cited as one of its greatest strengths. For Internet-facing applications, many standard
formats and protocols such as MIME and HTTP are supported. It includes modules for
creating graphical user interfaces, connecting to relational databases, generating
pseudorandom numbers, arithmetic with arbitrary-precision decimals,[130] manipulating
regular expressions, and unit testing.
Some parts of the standard library are covered by specifications—for example, the Web
Server Gateway Interface (WSGI) implementation wsgiref follows PEP 333[135]—but most
are specified by their code, internal documentation, and test suites. However, because most
of the standard library is cross-platform Python code, only a few modules need altering or
rewriting for variant implementations.
As of 17 March 2024, the Python Package Index (PyPI), the official repository for third-party
Python software, contains over 523,000[136] packages with a wide range of functionality,
including:
Automation
Data analytics
Databases
Documentation
Machine learning
Mobile apps
Multimedia
Computer networking
Scientific computing
System administration
Test frameworks
Text processing
Web frameworks
Web scraping
Development environments
Python also comes with an Integrated development environment (IDE) called IDLE, which is
more beginner-oriented.
Other shells, including IDLE and IPython, add further abilities such as improved auto-
completion, session state retention, and syntax highlighting.
Reference implementation
All current Python versions (i.e. since 3.7) only support operating systems with multi-
threading support.
Other implementations
All alternative implementations have at least slightly different semantics (e.g. may have
unordered dictionaries, unlike all current Python versions), e.g. with the larger Python
ecosystem, such as with supporting the C Python API of with PyPy:
PyPy is a fast, compliant interpreter of Python 2.7 and 3.10.[148][149] Its just-in-time
compiler often brings a significant speed improvement over CPython, but some libraries
written in C cannot be used with it.[150] It has e.g. RISC-V support.
Pyston is a variant of the Python runtime that uses just-in-time compilation to speed up
the execution of Python programs.[155]
Other just-in-time Python compilers have been developed, but are now unsupported:
Google began a project named Unladen Swallow in 2009, with the aim of speeding up the
Python interpreter five-fold by using the LLVM, and of improving its multithreading ability
to scale to thousands of cores,[161] while ordinary implementations suffer from the global
interpreter lock.
PyS60 was a Python 2 interpreter for Series 60 mobile phones released by Nokia in 2005. It
implemented many of the modules from the standard library and some additional modules
for integrating with the Symbian operating system. The Nokia N900 also supports Python
with GTK widget libraries, enabling programs to be written and run on the target
device.[162]
Cython compiles (a superset of) Python to C. The resulting code is also usable with Python
via direct C-level API calls into the Python interpreter.
Nuitka compiles Python into C.[166] It works with Python 3.4 to 3.12 (and 2.6 and 2.7), for
Python's main supported platforms (and Windows 7 or even Windows XP) and for Android. It
claims complete support for Python 3.10, some support for 3.11 and 3.12 and experimental
support for Python 3.13. It supports macOS including Apple Silicon-based. It's a free
compiler, though it also has commercial add-ons (e.g. for hiding source code).
Numba is used from Python, as a tool (enabled by adding a decorator to relevant Python
code), a JIT compiler that translates a subset of Python and NumPy code into fast machine
code.
RPython can be compiled to C, and is used to build the PyPy interpreter of Python.
The Python → 11l → C++ transpiler[168] compiles a subset of Python 3 to C++ (C++17).
Specialized:
MyHDL is a Python-based hardware description language (HDL), that converts MyHDL code
to Verilog or VHDL code.
Older projects (or not to be used with Python 3.x and latest syntax):
Google's Grumpy (latest release in 2017) transpiles Python 2 to Go.[169][170][171]
IronPython allows running Python 2.7 programs (and an alpha, released in 2021, is also
available for "Python 3.4, although features and behaviors from later versions may be
included"[172]) on the .NET Common Language Runtime.[173]
Jython compiles Python 2.7 to Java bytecode, allowing the use of the Java libraries from a
Python program.[174]
Pyrex (latest release in 2010) and Shed Skin (latest release in 2013) compile to C and C++
respectively.
Performance
Development
Python's development is conducted largely through the Python Enhancement Proposal (PEP)
process, the primary mechanism for proposing major new features, collecting community
input on issues, and documenting Python design decisions.[177] Python coding style is covered
in PEP 8.[178] Outstanding PEPs are reviewed and commented on by the Python community and
the steering council.[177]
Enhancement of the language corresponds with the development of the CPython reference
implementation. The mailing list python-dev is the primary forum for the language's
development. Specific issues were originally discussed in the Roundup bug tracker hosted at
by the foundation.[179] In 2022, all issues and discussions were migrated to GitHub.[180]
Development originally took place on a self-hosted source-code repository running
Mercurial, until Python moved to GitHub in January 2017.[181]
CPython's public releases come in three types, distinguished by which part of the version
number is incremented:
Bugfix releases,[186] which introduce no new features, occur about every 3 months and are
made when a sufficient number of bugs have been fixed upstream since the last release.
Security vulnerabilities are also patched in these releases. The third and final part of the
version number is incremented.[186]
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, they are often
delayed if the code is not ready. Python's development team monitors the state of the code by
running the large unit test suite during development.[187]
The major academic conference on Python is PyCon. There are also special Python mentoring
programs, such as PyLadies.
Python 3.12 removed wstr meaning Python extensions[188] need to be modified,[189] and 3.10
added pattern matching to the language.[190]
Python 3.12 dropped some outdated modules, and more will be dropped in the future,
deprecated as of 3.13; already deprecated array 'u' format code will emit
DeprecationWarning since 3.13 and will be removed in Python 3.16. The 'w' format code
should be used instead. Part of ctypes is also deprecated and
http.server.CGIHTTPRequestHandler will emit a DeprecationWarning, and will be
removed in 3.15. Using that code already has a high potential for both security and
functionality bugs. Parts of the typing module are deprecated, e.g. creating a
typing.NamedTuple class using keyword arguments to denote the fields and such (and
more) will be disallowed in Python 3.15.
Tools that can generate documentation for Python API include pydoc (available as part of the
standard library), Sphinx, Pdoc and its forks, Doxygen and Graphviz, among others.[191]
Naming
Python's name is derived from the British comedy group Monty Python, whom Python creator
Guido van Rossum enjoyed while developing the language. Monty Python references appear
frequently in Python code and culture;[192] for example, the metasyntactic variables often
used in Python literature are spam and eggs instead of the traditional foo and bar.[192][193]
The official Python documentation also contains various references to Monty Python
routines.[194][195] Users of Python are sometimes referred to as "Pythonistas".[196]
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 Simple
DirectMedia Layer to Python (commonly used to create games); PyQt and PyGTK, which bind Qt
and GTK to Python respectively; and PyPy, a Python implementation originally written in
Python.
Popularity
Since 2003, Python has consistently ranked in the top ten most popular programming
languages in the TIOBE Programming Community Index where as of December 2022 it was the
most popular language (ahead of C, C++, and Java).[39] It was selected as Programming
Language of the Year (for "the highest rise in ratings in a year") in 2007, 2010, 2018, and 2020
(the only language to have done so four times as of 2020[197]).
Large organizations that use Python include Wikipedia, Google,[198] Yahoo!,[199] CERN,[200]
NASA,[201] Facebook,[202] Amazon, Instagram,[203] Spotify,[204] and some smaller entities like
Industrial Light & Magic[205] and ITA.[206] The social news networking site Reddit was written
mostly in Python.[207] Organizations that partially use Python include Discord[208] and
Baidu.[209]
Uses
Python Powered
Python can serve as a scripting language for web applications, e.g. via mod_wsgi for the
Apache webserver.[210] 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. Pyjs and IronPython can be used to develop the client-side of Ajax-
based applications. SQLAlchemy can be used as a data mapper to a relational database.
Twisted is a framework to program communications between computers, and is used (for
example) by Dropbox.
Libraries such as NumPy, SciPy and Matplotlib allow the effective use of Python in scientific
computing,[211][212] with specialized libraries such as Biopython and Astropy providing
domain-specific functionality. SageMath is a computer algebra system with a notebook
interface programmable in Python: its library covers many aspects of mathematics,
including algebra, combinatorics, numerical mathematics, number theory, and
calculus.[213] OpenCV has Python bindings with a rich set of features for computer vision and
image processing.[214]
Python is commonly used in artificial intelligence projects and machine learning projects
with the help of libraries like TensorFlow, Keras, Pytorch, scikit-learn and the Logic
language ProbLog.[215][216][217][218][219] As a scripting language with a modular architecture,
simple syntax, and rich text processing tools, Python is often used for natural language
processing.[220]
The combination of Python and Prolog has proved to be particularly useful for AI
applications, with Prolog providing knowledge representation and reasoning capabilities.
The Janus system, in particular, exploits the similarities between these two languages, in
part because of their use of dynamic typing, and the simple recursive nature of their data
structures. Typical applications of this combination include natural language processing,
visual query answering, geospatial reasoning, and handling of semantic web data.[221][222] The
Natlog system, implemented in Python, uses Definite Clause Grammars (DCGs) as prompt
generators for text-to-text generators like GPT3 and text-to-image generators like DALL-E
or Stable Diffusion.[223]
Python can also be used for graphical user interface (GUI) by using libraries like
Tkinter.[224][225]
Python has been successfully embedded in many software products as a scripting language,
including in finite element method software such as Abaqus, 3D parametric modelers 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,[226] Inkscape, Scribus and Paint Shop Pro,[227] and musical notation
programs like scorewriter and 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.[228] It has also been used in several video games,[229][230] and
has been adopted as first of the three available programming languages in Google App
Engine, the other two being Java and Go.[231]
Many operating systems include Python as a standard component. It ships with most Linux
distributions,[232] AmigaOS 4 (using Python 2.7), FreeBSD (as a package), NetBSD, and OpenBSD
(as a package) and can be used from the command line (terminal). Many Linux distributions
use installers written in Python: Ubuntu uses the Ubiquity installer, while Red Hat Linux and
Fedora Linux use the Anaconda installer. Gentoo Linux uses Python in its package
management system, Portage.
Most of the Sugar software for the One Laptop per Child XO, developed at Sugar Labs as of
2008, is written in Python.[235] 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. Its Python Scripting
Provider is a core feature[236] since Version 4.0 from 7 February 2013.
Python's design and philosophy have influenced many other programming languages:
Boo uses indentation, a similar syntax, and a similar object model.[237]
Cobra uses indentation and a similar syntax, and its Acknowledgements document lists
Python first among languages that influenced it.[238]
GDScript, a scripting language very similar to Python, built-in to the Godot game
engine.[240]
Go is designed for the "speed of working in a dynamic language like Python"[241] and shares
the same syntax for slicing arrays.
Groovy was motivated by the desire to bring the Python design philosophy to Java.[242]
Mojo is a non-strict[28][243] superset of Python (e.g. still missing classes, and adding e.g.
struct).[244]
Ruby's creator, Yukihiro Matsumoto, has said: "I wanted a scripting language that was
more powerful than Perl, and more object-oriented than Python. That's why I decided to
design my own language."[246]
Kotlin blends Python and Java features, minimizing boilerplate code for enhanced
developer efficiency.[248]
Python's development practices have also been emulated by other languages. For example,
the practice of requiring a document describing the rationale for, and issues surrounding, a
change to the language (in Python, a PEP) is also used in Tcl,[249] Erlang,[250] and Swift.[251]
See also
References
3. "Why is Python a dynamic language and also a strongly typed language" (https://wiki.pyt
hon.org/moin/Why%20is%20Python%20a%20dynamic%20language%20and%20also%20a%20st
rongly%20typed%20language) . Python Wiki. Archived (https://web.archive.org/web/20
210314173706/https://wiki.python.org/moin/Why%20is%20Python%20a%20dynamic%20lang
uage%20and%20also%20a%20strongly%20typed%20language) from the original on 14
March 2021. Retrieved 27 January 2021.
8. "test – Regression tests package for Python – Python 3.7.13 documentation" (https://do
cs.python.org/3.7/library/test.html?highlight=android#test.support.is_android) .
docs.python.org. Archived (https://web.archive.org/web/20220517151240/https://doc
s.python.org/3.7/library/test.html?highlight=android#test.support.is_android)
from the original on 17 May 2022. Retrieved 17 May 2022.
9. "platform – Access to underlying platform's identifying data – Python 3.10.4
documentation" (https://docs.python.org/3/library/platform.html?highlight=androi
d) . docs.python.org. Archived (https://web.archive.org/web/20220517150826/https://
docs.python.org/3/library/platform.html?highlight=android) from the original on 17
May 2022. Retrieved 17 May 2022.
10. Holth, Moore (30 March 2014). "PEP 0441 – Improving Python ZIP Application Support" (ht
tps://www.python.org/dev/peps/pep-0441/) . Archived (https://web.archive.org/we
b/20181226141117/https://www.python.org/dev/peps/pep-0441/%20) from the original
on 26 December 2018. Retrieved 12 November 2015.
14. Kuchling, Andrew M. (22 December 2006). "Interview with Guido van Rossum (July 1998)"
(https://web.archive.org/web/20070501105422/http://www.amk.ca/python/writing/gvr
-interview) . amk.ca. Archived from the original (http://www.amk.ca/python/writing/
gvr-interview) on 1 May 2007. Retrieved 12 March 2012. "I'd spent a summer at DEC's
Systems Research Center, which introduced me to Modula-2+; the Modula-3 final report
was being written there at about the same time. What I learned there later showed up in
Python's exception handling, modules, and the fact that methods explicitly contain
'self' in their parameter list. String slicing came from Algol-68 and Icon."
15. "itertools – Functions creating iterators for efficient looping – Python 3.7.1
documentation" (https://docs.python.org/3/library/itertools.html) .
docs.python.org. Archived (https://web.archive.org/web/20200614153629/https://doc
s.python.org/3/library/itertools.html) from the original on 14 June 2020. Retrieved
22 November 2016. "This module implements a number of iterator building blocks
inspired by constructs from APL, Haskell, and SML."
16. van Rossum, Guido (1993). "An Introduction to Python for UNIX/C Programmers".
Proceedings of the NLUUG Najaarsconferentie (Dutch UNIX Users Group).
CiteSeerX 10.1.1.38.2023 (https://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.
38.2023) . "even though the design of C is far from ideal, its influence on Python is
considerable."
19. Simionato, Michele. "The Python 2.3 Method Resolution Order" (https://www.python.or
g/download/releases/2.3/mro/) . Python Software Foundation. Archived (https://web.
archive.org/web/20200820231854/https://www.python.org/download/releases/2.3/mr
o/) from the original on 20 August 2020. Retrieved 29 July 2014. "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"
29. Ring Team (4 December 2017). "Ring and other languages" (http://ring-lang.sourceforg
e.net/doc1.6/introduction.html#ring-and-other-languages) . ring-lang.net. ring-
lang. Archived (https://web.archive.org/web/20181225175312/http://ring-lang.sourcef
orge.net/doc1.6/introduction.html#ring-and-other-languages) from the original on
25 December 2018. Retrieved 4 December 2017.
30. Bini, Ola (2007). Practical JRuby on Rails Web 2.0 Projects: bringing Ruby on Rails to the
Java platform (https://archive.org/details/practicaljrubyon0000bini/page/3) .
Berkeley: APress. p. 3 (https://archive.org/details/practicaljrubyon0000bini/page/
3) . ISBN 978-1-59059-881-8.
32. Kuhlman, Dave. "A Python Book: Beginning Python, Advanced Python, and Python
Exercises" (https://web.archive.org/web/20120623165941/http://cutter.rexx.com/~dk
uhlman/python_book_01.html) . Section 1.1. Archived from the original (https://www.
davekuhlman.org/python_book_01.pdf) (PDF) on 23 June 2012.
35. Rossum, Guido Van (20 January 2009). "The History of Python: A Brief Timeline of Python"
(https://python-history.blogspot.com/2009/01/brief-timeline-of-python.html) . The
History of Python. Archived (https://web.archive.org/web/20200605032200/https://pyt
hon-history.blogspot.com/2009/01/brief-timeline-of-python.html) from the
original on 5 June 2020. Retrieved 5 March 2021.
36. Peterson, Benjamin (20 April 2020). "Python 2.7.18, the last release of Python 2" (http
s://pythoninsider.blogspot.com/2020/04/python-2718-last-release-of-python-2.htm
l) . Python Insider. Archived (https://web.archive.org/web/20200426204118/https://py
thoninsider.blogspot.com/2020/04/python-2718-last-release-of-python-2.html)
from the original on 26 April 2020. Retrieved 27 April 2020.
41. Venners, Bill (13 January 2003). "The Making of Python" (http://www.artima.com/intv/py
thonP.html) . Artima Developer. Artima. Archived (https://web.archive.org/web/2016
0901183332/http://www.artima.com/intv/pythonP.html) from the original on 1
September 2016. Retrieved 22 March 2007.
42. van Rossum, Guido (29 August 2000). "SETL (was: Lukewarm about range literals)" (http
s://mail.python.org/pipermail/python-dev/2000-August/008881.html) . Python-Dev
(Mailing list). Archived (https://web.archive.org/web/20180714064019/https://mail.pyt
hon.org/pipermail/python-dev/2000-August/008881.html) from the original on 14
July 2018. Retrieved 13 March 2011.
43. van Rossum, Guido (20 January 2009). "A Brief Timeline of Python" (https://python-histo
ry.blogspot.com/2009/01/brief-timeline-of-python.html) . The History of Python.
Archived (https://web.archive.org/web/20200605032200/https://python-history.blogs
pot.com/2009/01/brief-timeline-of-python.html) from the original on 5 June 2020.
Retrieved 20 January 2009.
44. Fairchild, Carlie (12 July 2018). "Guido van Rossum Stepping Down from Role as Python's
Benevolent Dictator For Life" (https://www.linuxjournal.com/content/guido-van-ross
um-stepping-down-role-pythons-benevolent-dictator-life) . Linux Journal. Archived
(https://web.archive.org/web/20180713192427/https://www.linuxjournal.com/content/
guido-van-rossum-stepping-down-role-pythons-benevolent-dictator-life) from the
original on 13 July 2018. Retrieved 13 July 2018.
47. Kuchling, A. M.; Zadka, Moshe (16 October 2000). "What's New in Python 2.0" (https://doc
s.python.org/whatsnew/2.0.html) . Python Software Foundation. Archived (https://we
b.archive.org/web/20121023112045/http://docs.python.org/whatsnew/2.0.html) from
the original on 23 October 2012. Retrieved 11 February 2012.
48. van Rossum, Guido (5 April 2006). "PEP 3000 – Python 3000" (https://web.archive.org/w
eb/20160303231513/https://www.python.org/dev/peps/pep-3000/) . Python
Enhancement Proposals. Python Software Foundation. Archived from the original (http
s://www.python.org/dev/peps/pep-3000/) on 3 March 2016. Retrieved 27 June 2009.
49. "2to3 – Automated Python 2 to 3 code translation" (https://docs.python.org/3/library/2
to3.html) . docs.python.org. Archived (https://web.archive.org/web/2020060423282
3/https://docs.python.org/3/library/2to3.html) from the original on 4 June 2020.
Retrieved 2 February 2021.
51. "PEP 466 – Network Security Enhancements for Python 2.7.x" (https://www.python.org/
dev/peps/pep-0466/) . python.org. Archived (https://web.archive.org/web/202006042
32833/https://www.python.org/dev/peps/pep-0466/) from the original on 4 June
2020. Retrieved 9 January 2017.
59. Langa, Łukasz (24 March 2022). "Python 3.10.4 and 3.9.12 are now available out of
schedule" (https://pythoninsider.blogspot.com/2022/03/python-3104-and-3912-are-n
ow-available.html) . Python Insider. Archived (https://web.archive.org/web/20220421
205820/https://pythoninsider.blogspot.com/2022/03/python-3104-and-3912-are-now-
available.html) from the original on 21 April 2022. Retrieved 19 April 2022.
60. Langa, Łukasz (16 March 2022). "Python 3.10.3, 3.9.11, 3.8.13, and 3.7.13 are now
available with security content" (https://pythoninsider.blogspot.com/2022/03/python
-3103-3911-3813-and-3713-are-now.html) . Python Insider. Archived (https://web.arc
hive.org/web/20220417215022/https://pythoninsider.blogspot.com/2022/03/python-310
3-3911-3813-and-3713-are-now.html) from the original on 17 April 2022. Retrieved
19 April 2022.
61. Langa, Łukasz (17 May 2022). "Python 3.9.13 is now available" (https://pythoninsider.blo
gspot.com/2022/05/python-3913-is-now-available.html) . Python Insider. Archived (h
ttps://web.archive.org/web/20220517173546/https://pythoninsider.blogspot.com/202
2/05/python-3913-is-now-available.html) from the original on 17 May 2022. Retrieved
21 May 2022.
62. Langa, Łukasz (7 September 2022). "Python releases 3.10.7, 3.9.14, 3.8.14, and 3.7.14 are
now available" (https://pythoninsider.blogspot.com/2022/09/python-releases-3107-39
14-3814-and-3714.html) . Python Insider. Archived (https://web.archive.org/web/2022
0913001104/https://pythoninsider.blogspot.com/2022/09/python-releases-3107-3914-3
814-and-3714.html) from the original on 13 September 2022. Retrieved 16 September
2022.
65. corbet (24 October 2022). "Python 3.11 released [LWN.net]" (https://lwn.net/Articles/91
2216/) . lwn.net. Retrieved 15 November 2022.
69. Wouters, Thomas (9 April 2024). "Python Insider: Python 3.12.3 and 3.13.0a6 released" (h
ttps://pythoninsider.blogspot.com/2024/04/python-3123-and-3130a6-released.htm
l) . Python Insider. Retrieved 29 April 2024.
70. "PEP 594 – Removing dead batteries from the standard library" (https://peps.python.or
g/pep-0594/) . Python Enhancement Proposals. Python Softtware Foundation. 20 May
2019.
71. Hugo (15 October 2024). "Python Insider: Python 3.14.0 alpha 1 is now available" (https://
pythoninsider.blogspot.com/2024/10/python-3140-alpha-1-is-now-available.html) .
Python Insider. Retrieved 16 October 2024.
72. "PEP 649 – Deferred Evaluation Of Annotations Using Descriptors | peps.python.org" (ht
tps://peps.python.org/pep-0649/) . Python Enhancement Proposals (PEPs). Retrieved
16 October 2024.
73. The Cain Gang Ltd. "Python Metaclasses: Who? Why? When?" (https://web.archive.org/w
eb/20090530030205/http://www.python.org/community/pycon/dc2004/papers/24/meta
classes-pycon.pdf) (PDF). Archived from the original (https://www.python.org/comm
unity/pycon/dc2004/papers/24/metaclasses-pycon.pdf) (PDF) on 30 May 2009.
Retrieved 27 June 2009.
79. "Extending and Embedding the Python Interpreter: Reference Counts" (https://docs.pyt
hon.org/extending/extending.html#reference-counts) . Docs.python.org. Archived (h
ttps://web.archive.org/web/20121018063230/http://docs.python.org/extending/extend
ing.html#reference-counts) from the original on 18 October 2012. Retrieved 5 June
2020. "Since Python makes heavy use of malloc() and free() , it needs a strategy to
avoid memory leaks as well as the use of freed memory. The chosen method is called
reference counting."
80. Hettinger, Raymond (30 January 2002). "PEP 289 – Generator Expressions" (https://ww
w.python.org/dev/peps/pep-0289/) . Python Enhancement Proposals. Python
Software Foundation. Archived (https://web.archive.org/web/20200614153717/https://w
ww.python.org/dev/peps/pep-0289/) from the original on 14 June 2020. Retrieved
19 February 2012.
81. "6.5 itertools – Functions creating iterators for efficient looping" (https://docs.pytho
n.org/3/library/itertools.html) . Docs.python.org. Archived (https://web.archive.or
g/web/20200614153629/https://docs.python.org/3/library/itertools.html) from the
original on 14 June 2020. Retrieved 22 November 2016.
82. Peters, Tim (19 August 2004). "PEP 20 – The Zen of Python" (https://www.python.org/de
v/peps/pep-0020/) . Python Enhancement Proposals. Python Software Foundation.
Archived (https://web.archive.org/web/20181226141127/https://www.python.org/dev/p
eps/pep-0020/) from the original on 26 December 2018. Retrieved 24 November 2008.
83. Lutz, Mark (January 2022). "Python Changes 2014+" (https://learning-python.com/pyth
on-changes-2014-plus.html) . Learning Python. Archived (https://web.archive.org/w
eb/20240315075935/https://learning-python.com/python-changes-2014-plus.html)
from the original on 15 March 2024. Retrieved 25 February 2024.
85. Ambi, Chetan (4 July 2021). "The Most Controversial Python Walrus Operator" (https://py
thonsimplified.com/the-most-controversial-python-walrus-operator/) . Python
Simplified. Archived (https://web.archive.org/web/20230827154931/https://pythonsimp
lified.com/the-most-controversial-python-walrus-operator/) from the original on
27 August 2023. Retrieved 5 February 2024.
86. Grifski, Jeremy (24 May 2020). "The Controversy Behind The Walrus Operator in Python"
(https://therenegadecoder.com/code/the-controversy-behind-the-walrus-operator-
in-python/) . The Renegade Coder. Archived (https://web.archive.org/web/20231228135
749/https://therenegadecoder.com/code/the-controversy-behind-the-walrus-operat
or-in-python/) from the original on 28 December 2023. Retrieved 25 February 2024.
88. Martelli, Alex; Ravenscroft, Anna; Ascher, David (2005). Python Cookbook, 2nd Edition (h
ttp://shop.oreilly.com/product/9780596007973.do) . O'Reilly Media. p. 230. ISBN 978-
0-596-00797-3. Archived (https://web.archive.org/web/20200223171254/http://shop.or
eilly.com/product/9780596007973.do) from the original on 23 February 2020.
Retrieved 14 November 2015.
97. Guttag, John V. (12 August 2016). Introduction to Computation and Programming Using
Python: With Application to Understanding Data. MIT Press. ISBN 978-0-262-52962-4.
101. van Rossum, Guido (22 April 2009). "Tail Recursion Elimination" (http://neopythonic.blo
gspot.be/2009/04/tail-recursion-elimination.html) . Neopythonic.blogspot.be.
Archived (https://web.archive.org/web/20180519225253/http://neopythonic.blogspot.
be/2009/04/tail-recursion-elimination.html) from the original on 19 May 2018.
Retrieved 3 December 2012.
102. van Rossum, Guido (9 February 2006). "Language Design Is Not Just Solving Puzzles" (htt
p://www.artima.com/weblogs/viewpost.jsp?thread=147358) . Artima forums. Artima.
Archived (https://web.archive.org/web/20200117182525/https://www.artima.com/webl
ogs/viewpost.jsp?thread=147358) from the original on 17 January 2020. Retrieved
21 March 2007.
103. van Rossum, Guido; Eby, Phillip J. (10 May 2005). "PEP 342 – Coroutines via Enhanced
Generators" (https://www.python.org/dev/peps/pep-0342/) . Python Enhancement
Proposals. Python Software Foundation. Archived (https://web.archive.org/web/20200
529003739/https://www.python.org/dev/peps/pep-0342/) from the original on 29 May
2020. Retrieved 19 February 2012.
104. "PEP 380" (https://www.python.org/dev/peps/pep-0380/) . Python.org. Archived (htt
ps://web.archive.org/web/20200604233821/https://www.python.org/dev/peps/pep-03
80/) from the original on 4 June 2020. Retrieved 3 December 2012.
106. "PEP 0465 – A dedicated infix operator for matrix multiplication" (https://www.python.
org/dev/peps/pep-0465/) . python.org. Archived (https://web.archive.org/web/20200
604224255/https://www.python.org/dev/peps/pep-0465/) from the original on 4 June
2020. Retrieved 1 January 2016.
109. van Rossum, Guido; Hettinger, Raymond (7 February 2003). "PEP 308 – Conditional
Expressions" (https://www.python.org/dev/peps/pep-0308/) . Python Enhancement
Proposals. Python Software Foundation. Archived (https://web.archive.org/web/20160
313113147/https://www.python.org/dev/peps/pep-0308/) from the original on 13
March 2016. Retrieved 13 July 2011.
113. "Why must 'self' be used explicitly in method definitions and calls?" (https://docs.pytho
n.org/faq/design.html#why-must-self-be-used-explicitly-in-method-definitions-and
-calls) . Design and History FAQ. Python Software Foundation. Archived (https://web.a
rchive.org/web/20121024164243/http://docs.python.org/faq/design.html#why-must-se
lf-be-used-explicitly-in-method-definitions-and-calls) from the original on 24
October 2012. Retrieved 19 February 2012.
114. Sweigart, Al (2020). Beyond the Basic Stuff with Python: Best Practices for Writing Clean
Code (https://books.google.com/books?id=7GUKEAAAQBAJ&pg=PA322) . No Starch
Press. p. 322. ISBN 978-1-59327-966-0. Archived (https://web.archive.org/web/202108
13194312/https://books.google.com/books?id=7GUKEAAAQBAJ&pg=PA322) from the
original on 13 August 2021. Retrieved 7 July 2021.
115. "The Python Language Reference, section 3.3. New-style and classic classes, for release
2.7.1" (https://web.archive.org/web/20121026063834/http://docs.python.org/referenc
e/datamodel.html#new-style-and-classic-classes) . Archived from the original (http
s://docs.python.org/reference/datamodel.html#new-style-and-classic-classes) on
26 October 2012. Retrieved 12 January 2011.
118. "mypy – Optional Static Typing for Python" (http://mypy-lang.org/) . Archived (http
s://web.archive.org/web/20200606192012/http://mypy-lang.org/) from the original
on 6 June 2020. Retrieved 28 January 2017.
119. "Introduction" (https://mypyc.readthedocs.io/en/latest/introduction.html) .
mypyc.readthedocs.io. Archived (https://web.archive.org/web/20231222000457/http
s://mypyc.readthedocs.io/en/latest/introduction.html) from the original on 22
December 2023. Retrieved 22 December 2023.
120. "15. Floating Point Arithmetic: Issues and Limitations – Python 3.8.3 documentation" (ht
tps://docs.python.org/3.8/tutorial/floatingpoint.html#representation-error) .
docs.python.org. Archived (https://web.archive.org/web/20200606113842/https://doc
s.python.org/3.8/tutorial/floatingpoint.html#representation-error) from the
original on 6 June 2020. Retrieved 6 June 2020. "Almost all machines today (November
2000) use IEEE-754 floating point arithmetic, and almost all platforms map Python
floats to IEEE-754 "double precision"."
121. Zadka, Moshe; van Rossum, Guido (11 March 2001). "PEP 237 – Unifying Long Integers and
Integers" (https://www.python.org/dev/peps/pep-0237/) . Python Enhancement
Proposals. Python Software Foundation. Archived (https://web.archive.org/web/20200
528063237/https://www.python.org/dev/peps/pep-0237/) from the original on 28 May
2020. Retrieved 24 September 2011.
123. "PEP 465 – A dedicated infix operator for matrix multiplication" (https://legacy.python.
org/dev/peps/pep-0465/) . python.org. Archived (https://web.archive.org/web/20200
529200310/https://legacy.python.org/dev/peps/pep-0465/) from the original on 29
May 2020. Retrieved 3 July 2018.
124. Zadka, Moshe; van Rossum, Guido (11 March 2001). "PEP 238 – Changing the Division
Operator" (https://www.python.org/dev/peps/pep-0238/) . Python Enhancement
Proposals. Python Software Foundation. Archived (https://web.archive.org/web/20200
528115550/https://www.python.org/dev/peps/pep-0238/) from the original on 28 May
2020. Retrieved 23 October 2013.
129. Kernighan, Brian W.; Ritchie, Dennis M. (1988). The C Programming Language (2nd ed.).
p. 206 (https://archive.org/details/cprogramminglang00bria/page/206) .
130. Batista, Facundo (17 October 2003). "PEP 327 – Decimal Data Type" (https://www.python.
org/dev/peps/pep-0327/) . Python Enhancement Proposals. Python Software
Foundation. Archived (https://web.archive.org/web/20200604234830/https://www.pyth
on.org/dev/peps/pep-0327/) from the original on 4 June 2020. Retrieved 24 November
2008.
132. "10 Reasons Python Rocks for Research (And a Few Reasons it Doesn't) – Hoyt Koepke" (ht
tps://web.archive.org/web/20200531211840/https://www.stat.washington.edu/~hoyta
k/blog/whypython.html) . University of Washington Department of Statistics. Archived
from the original (https://www.stat.washington.edu/~hoytak/blog/whypython.html)
on 31 May 2020. Retrieved 3 February 2019.
133. Shell, Scott (17 June 2014). "An introduction to Python for scientific computing" (http
s://engineering.ucsb.edu/~shell/che210d/python.pdf) (PDF). Archived (https://web.a
rchive.org/web/20190204014642/https://engineering.ucsb.edu/~shell/che210d/python.
pdf) (PDF) from the original on 4 February 2019. Retrieved 3 February 2019.
134. Piotrowski, Przemyslaw (July 2006). "Build a Rapid Web Development Environment for
Python Server Pages and Oracle" (http://www.oracle.com/technetwork/articles/piotro
wski-pythoncore-084049.html) . Oracle Technology Network. Oracle. Archived (http
s://web.archive.org/web/20190402124435/https://www.oracle.com/technetwork/articl
es/piotrowski-pythoncore-084049.html) from the original on 2 April 2019. Retrieved
12 March 2012.
135. Eby, Phillip J. (7 December 2003). "PEP 333 – Python Web Server Gateway Interface v1.0"
(https://www.python.org/dev/peps/pep-0333/) . Python Enhancement Proposals.
Python Software Foundation. Archived (https://web.archive.org/web/20200614170344/h
ttps://www.python.org/dev/peps/pep-0333/) from the original on 14 June 2020.
Retrieved 19 February 2012.
139. "4. Building C and C++ Extensions – Python 3.9.2 documentation" (https://docs.python.o
rg/3/extending/building.html) . docs.python.org. Archived (https://web.archive.org/
web/20210303002519/https://docs.python.org/3/extending/building.html) from the
original on 3 March 2021. Retrieved 1 March 2021.
140. van Rossum, Guido (5 June 2001). "PEP 7 – Style Guide for C Code" (https://www.python.
org/dev/peps/pep-0007/) . Python Enhancement Proposals. Python Software
Foundation. Archived (https://web.archive.org/web/20200601203908/https://www.pyth
on.org/dev/peps/pep-0007/) from the original on 1 June 2020. Retrieved 24 November
2008.
149. Team, The PyPy (28 December 2019). "Download and Install" (https://www.pypy.org/down
load.html) . PyPy. Archived (https://web.archive.org/web/20220108212951/https://ww
w.pypy.org/download.html) from the original on 8 January 2022. Retrieved 8 January
2022.
152. Lawson, Loraine (14 March 2023). "MIT-Created Compiler Speeds up Python Code" (http
s://thenewstack.io/mit-created-compiler-speeds-up-python-code/) . The New Stack.
Archived (https://web.archive.org/web/20230406054200/https://thenewstack.io/mit-c
reated-compiler-speeds-up-python-code/) from the original on 6 April 2023.
Retrieved 28 August 2023.
155. Yegulalp, Serdar (29 October 2020). "Pyston returns from the dead to speed Python" (htt
ps://www.infoworld.com/article/3587591/pyston-returns-from-the-dead-to-speed-p
ython.html) . InfoWorld. Archived (https://web.archive.org/web/20210127113233/http
s://www.infoworld.com/article/3587591/pyston-returns-from-the-dead-to-speed-py
thon.html) from the original on 27 January 2021. Retrieved 26 January 2021.
157. Aroca, Rafael (7 August 2021). "Snek Lang: feels like Python on Arduinos" (https://rafael
aroca.wordpress.com/2021/08/07/snek-lang-feels-like-python-on-arduinos/) . Yet
Another Technology Blog. Archived (https://web.archive.org/web/20240105001031/http
s://rafaelaroca.wordpress.com/2021/08/07/snek-lang-feels-like-python-on-arduino
s/) from the original on 5 January 2024. Retrieved 4 January 2024.
158. Aufranc (CNXSoft), Jean-Luc (16 January 2020). "Snekboard Controls LEGO Power
Functions with CircuitPython or Snek Programming Languages (Crowdfunding) – CNX
Software" (https://www.cnx-software.com/2020/01/16/snekboard-controls-lego-pow
er-functions-with-circuitpython-or-snek-programming-languages/) . CNX Software
– Embedded Systems News. Archived (https://web.archive.org/web/20240105001031/htt
ps://www.cnx-software.com/2020/01/16/snekboard-controls-lego-power-functions-
with-circuitpython-or-snek-programming-languages/) from the original on 5
January 2024. Retrieved 4 January 2024.
159. Kennedy (@mkennedy), Michael. "Ready to find out if you're git famous?" (https://pytho
nbytes.fm/episodes/show/187/ready-to-find-out-if-youre-git-famous) .
pythonbytes.fm. Archived (https://web.archive.org/web/20240105001031/https://pyth
onbytes.fm/episodes/show/187/ready-to-find-out-if-youre-git-famous) from the
original on 5 January 2024. Retrieved 4 January 2024.
160. Packard, Keith (20 December 2022). "The Snek Programming Language: A Python-inspired
Embedded Computing Language" (https://sneklang.org/doc/snek.pdf) (PDF). Archived
(https://web.archive.org/web/20240104162458/https://sneklang.org/doc/snek.pdf)
(PDF) from the original on 4 January 2024. Retrieved 4 January 2024.
167. Guelton, Serge; Brunet, Pierrick; Amini, Mehdi; Merlini, Adrien; Corbillon, Xavier;
Raynaud, Alan (16 March 2015). "Pythran: enabling static optimization of scientific
Python programs" (https://doi.org/10.1088%2F1749-4680%2F8%2F1%2F014001) .
Computational Science & Discovery. 8 (1). IOP Publishing: 014001.
Bibcode:2015CS&D....8a4001G (https://ui.adsabs.harvard.edu/abs/2015CS&D....8a4001
G) . doi:10.1088/1749-4680/8/1/014001 (https://doi.org/10.1088%2F1749-4680%2F8%2F1%
2F014001) . ISSN 1749-4699 (https://search.worldcat.org/issn/1749-4699) .
171. Francisco, Thomas Claburn in San. "Google's Grumpy code makes Python Go" (https://w
ww.theregister.com/2017/01/05/googles_grumpy_makes_python_go/) .
www.theregister.com. Archived (https://web.archive.org/web/20210307165521/https://
www.theregister.com/2017/01/05/googles_grumpy_makes_python_go/) from the
original on 7 March 2021. Retrieved 20 January 2021.
177. Warsaw, Barry; Hylton, Jeremy; Goodger, David (13 June 2000). "PEP 1 – PEP Purpose and
Guidelines" (https://www.python.org/dev/peps/pep-0001/) . Python Enhancement
Proposals. Python Software Foundation. Archived (https://web.archive.org/web/20200
606042011/https://www.python.org/dev/peps/pep-0001/) from the original on 6 June
2020. Retrieved 19 April 2011.
179. Cannon, Brett. "Guido, Some Guys, and a Mailing List: How Python is Developed" (https://
web.archive.org/web/20090601134342/http://www.python.org/dev/intro/) .
python.org. Python Software Foundation. Archived from the original (https://www.pyt
hon.org/dev/intro/) on 1 June 2009. Retrieved 27 June 2009.
182. Hughes, Owen (24 May 2021). "Programming languages: Why Python 4.0 might never
arrive, according to its creator" (https://www.techrepublic.com/article/programming
-languages-why-python-4-0-will-probably-never-arrive-according-to-its-creato
r/) . TechRepublic. Archived (https://web.archive.org/web/20220714201302/https://w
ww.techrepublic.com/article/programming-languages-why-python-4-0-will-probabl
y-never-arrive-according-to-its-creator/) from the original on 14 July 2022.
Retrieved 16 May 2022.
185. Norwitz, Neal (8 April 2002). "[Python-Dev] Release Schedules (was Stability & change)"
(https://mail.python.org/pipermail/python-dev/2002-April/022739.html) . Archived
(https://web.archive.org/web/20181215122750/https://mail.python.org/pipermail/pyth
on-dev/2002-April/022739.html) from the original on 15 December 2018. Retrieved
27 June 2009.
186. Aahz; Baxter, Anthony (15 March 2001). "PEP 6 – Bug Fix Releases" (https://www.python.
org/dev/peps/pep-0006/) . Python Enhancement Proposals. Python Software
Foundation. Archived (https://web.archive.org/web/20200605001318/https://www.pyth
on.org/dev/peps/pep-0006/) from the original on 5 June 2020. Retrieved 27 June 2009.
193. "In Python, should I use else after a return in an if block?" (https://stackoverflow.com/
questions/5033906/in-python-should-i-use-else-after-a-return-in-an-if-block) .
Stack Overflow. Stack Exchange. 17 February 2011. Archived (https://web.archive.org/w
eb/20190620000050/https://stackoverflow.com/questions/5033906/in-python-should-i
-use-else-after-a-return-in-an-if-block) from the original on 20 June 2019.
Retrieved 6 May 2011.
194. Lutz, Mark (2009). Learning Python: Powerful Object-Oriented Programming (https://bo
oks.google.com/books?id=1HxWGezDZcgC&pg=PA17) . O'Reilly Media, Inc. p. 17.
ISBN 9781449379322. Archived (https://web.archive.org/web/20170717044012/https://bo
oks.google.com/books?id=1HxWGezDZcgC&pg=PA17) from the original on 17 July 2017.
Retrieved 9 May 2017.
195. Fehily, Chris (2002). Python (https://books.google.com/books?id=carqdIdfVlYC&pg=PR1
5) . Peachpit Press. p. xv. ISBN 9780201748840. Archived (https://web.archive.org/we
b/20170717044040/https://books.google.com/books?id=carqdIdfVlYC&pg=PR15) from
the original on 17 July 2017. Retrieved 9 May 2017.
197. Blake, Troy (18 January 2021). "TIOBE Index for January 2021" (https://seniordba.wordpr
ess.com/2021/01/18/tiobe-index-for-january-2021/) . Technology News and
Information by SeniorDBA. Archived (https://web.archive.org/web/20210321143253/http
s://seniordba.wordpress.com/2021/01/18/tiobe-index-for-january-2021/) from the
original on 21 March 2021. Retrieved 26 February 2021.
201. Shafer, Daniel G. (17 January 2003). "Python Streamlines Space Shuttle Mission Design"
(https://www.python.org/about/success/usa/) . Python Software Foundation.
Archived (https://web.archive.org/web/20200605093424/https://www.python.org/abou
t/success/usa/) from the original on 5 June 2020. Retrieved 24 November 2008.
202. "Tornado: Facebook's Real-Time Web Framework for Python – Facebook for Developers"
(https://developers.facebook.com/blog/post/301) . Facebook for Developers.
Archived (https://web.archive.org/web/20190219031313/https://developers.facebook.c
om/blog/post/301) from the original on 19 February 2019. Retrieved 19 June 2018.
203. "What Powers Instagram: Hundreds of Instances, Dozens of Technologies" (https://insta
gram-engineering.com/what-powers-instagram-hundreds-of-instances-dozens-of-t
echnologies-adf2e22da2ad) . Instagram Engineering. 11 December 2016. Archived (http
s://web.archive.org/web/20200615183410/https://instagram-engineering.com/what-p
owers-instagram-hundreds-of-instances-dozens-of-technologies-adf2e22da2ad)
from the original on 15 June 2020. Retrieved 27 May 2019.
205. Fortenberry, Tim (17 January 2003). "Industrial Light & Magic Runs on Python" (https://w
ww.python.org/about/success/ilm/) . Python Software Foundation. Archived (https://
web.archive.org/web/20200606042020/https://www.python.org/about/success/ilm/)
from the original on 6 June 2020. Retrieved 11 February 2012.
206. Taft, Darryl K. (5 March 2007). "Python Slithers into Systems" (http://www.eweek.com/
c/a/Application-Development/Python-Slithers-into-Systems/) . eWeek.com. Ziff Davis
Holdings. Archived (https://web.archive.org/web/20210813194304/https://www.eweek.c
om/development/python-slithers-into-systems/) from the original on 13 August 2021.
Retrieved 24 September 2011.
210. "Usage statistics and market share of Python for websites" (http://w3techs.com/techn
ologies/details/pl-python/all/all) . 2012. Archived (https://web.archive.org/web/2021
0813194305/https://w3techs.com/technologies/details/pl-python) from the original
on 13 August 2021. Retrieved 18 December 2012.
211. Oliphant, Travis (2007). "Python for Scientific Computing" (https://www.h2desk.com/bl
og/python-scientific-computing/) . Computing in Science and Engineering. 9 (3): 10–
20. Bibcode:2007CSE.....9c..10O (https://ui.adsabs.harvard.edu/abs/2007CSE.....9c..1
0O) . CiteSeerX 10.1.1.474.6460 (https://citeseerx.ist.psu.edu/viewdoc/summary?doi=
10.1.1.474.6460) . doi:10.1109/MCSE.2007.58 (https://doi.org/10.1109%2FMCSE.2007.5
8) . ISSN 1521-9615 (https://search.worldcat.org/issn/1521-9615) . S2CID 206457124 (h
ttps://api.semanticscholar.org/CorpusID:206457124) . Archived (https://web.archive.
org/web/20200615193226/https://www.h2desk.com/blog/python-scientific-computin
g/) from the original on 15 June 2020. Retrieved 10 April 2015.
212. Millman, K. Jarrod; Aivazis, Michael (2011). "Python for Scientists and Engineers" (htt
p://www.computer.org/csdl/mags/cs/2011/02/mcs2011020009.html) . Computing in
Science and Engineering. 13 (2): 9–12. Bibcode:2011CSE....13b...9M (https://ui.adsabs.h
arvard.edu/abs/2011CSE....13b...9M) . doi:10.1109/MCSE.2011.36 (https://doi.org/10.1
109%2FMCSE.2011.36) . Archived (https://web.archive.org/web/20190219031439/http
s://www.computer.org/csdl/mags/cs/2011/02/mcs2011020009.html) from the original
on 19 February 2019. Retrieved 7 July 2014.
215. Dean, Jeff; Monga, Rajat; et al. (9 November 2015). "TensorFlow: Large-scale machine
learning on heterogeneous systems" (http://download.tensorflow.org/paper/whitepap
er2015.pdf) (PDF). TensorFlow.org. Google Research. Archived (https://web.archive.o
rg/web/20151120004649/http://download.tensorflow.org/paper/whitepaper2015.pdf)
(PDF) from the original on 20 November 2015. Retrieved 10 November 2015.
216. Piatetsky, Gregory. "Python eats away at R: Top Software for Analytics, Data Science,
Machine Learning in 2018: Trends and Analysis" (https://www.kdnuggets.com/2018/05/po
ll-tools-analytics-data-science-machine-learning-results.html/2) . KDnuggets.
Archived (https://web.archive.org/web/20191115234216/https://www.kdnuggets.com/20
18/05/poll-tools-analytics-data-science-machine-learning-results.html/2) from the
original on 15 November 2019. Retrieved 30 May 2018.
217. "Who is using scikit-learn? – scikit-learn 0.20.1 documentation" (https://scikit-learn.o
rg/stable/testimonials/testimonials.html) . scikit-learn.org. Archived (https://web.a
rchive.org/web/20200506210716/https://scikit-learn.org/stable/testimonials/testimon
ials.html) from the original on 6 May 2020. Retrieved 30 November 2018.
218. Jouppi, Norm. "Google supercharges machine learning tasks with TPU custom chip" (htt
ps://cloudplatform.googleblog.com/2016/05/Google-supercharges-machine-learning-
tasks-with-custom-chip.html) . Google Cloud Platform Blog. Archived (https://web.ar
chive.org/web/20160518201516/https://cloudplatform.googleblog.com/2016/05/Google
-supercharges-machine-learning-tasks-with-custom-chip.html) from the original
on 18 May 2016. Retrieved 19 May 2016.
219. De Raedt, Luc; Kimmig, Angelika (2015). "Probabilistic (logic) programming concepts" (h
ttps://doi.org/10.1007%2Fs10994-015-5494-z) . Machine Learning. 100 (1): 5–47.
doi:10.1007/s10994-015-5494-z (https://doi.org/10.1007%2Fs10994-015-5494-z) .
S2CID 3166992 (https://api.semanticscholar.org/CorpusID:3166992) .
221. Andersen, C. and Swift, T., 2023. The Janus System: a bridge to new prolog applications.
In Prolog: The Next 50 Years (pp. 93–104). Cham: Springer Nature Switzerland.
223. Tarau, P., 2023. Reflections on automation, learnability and expressiveness in logic-
based programming languages. In Prolog: The Next 50 Years (pp. 359–371). Cham:
Springer Nature Switzerland.
229. CCP porkbelly (24 August 2010). "Stackless Python 2.7" (https://community.eveonline.c
om/news/dev-blogs/stackless-python-2.7/) . EVE Community Dev Blogs. CCP Games.
Archived (https://web.archive.org/web/20140111155537/http://community.eveonline.co
m/news/dev-blogs/stackless-python-2.7/) from the original on 11 January 2014.
Retrieved 11 January 2014. "As you may know, EVE has at its core the programming
language known as Stackless Python."
230. Caudill, Barry (20 September 2005). "Modding Sid Meier's Civilization IV" (https://web.ar
chive.org/web/20101202164144/http://www.2kgames.com/civ4/blog_03.htm) . Sid
Meier's Civilization IV Developer Blog. Firaxis Games. Archived from the original (http://
www.2kgames.com/civ4/blog_03.htm) on 2 December 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."
242. Strachan, James (29 August 2003). "Groovy – the birth of a new dynamic language for
the Java platform" (https://web.archive.org/web/20070405085722/http://radio.weblog
s.com/0112098/2003/08/29.html) . Archived from the original (http://radio.weblogs.c
om/0112098/2003/08/29.html) on 5 April 2007. Retrieved 11 June 2007.
244. Spencer, Michael (4 May 2023). "What is Mojo Programming Language?" (https://datascie
ncelearningcenter.substack.com/p/what-is-mojo-programming-language) .
datasciencelearningcenter.substack.com. Archived (https://web.archive.org/web/202
30505090408/https://datasciencelearningcenter.substack.com/p/what-is-mojo-progr
amming-language) from the original on 5 May 2023. Retrieved 5 May 2023.
245. Yegulalp, Serdar (16 January 2017). "Nim language draws from best of Python, Rust, Go,
and Lisp" (https://www.infoworld.com/article/3157745/application-development/nim-l
anguage-draws-from-best-of-python-rust-go-and-lisp.html) . InfoWorld. Archived
(https://web.archive.org/web/20181013211847/https://www.infoworld.com/article/3157
745/application-development/nim-language-draws-from-best-of-python-rust-go-an
d-lisp.html) from the original on 13 October 2018. Retrieved 7 June 2020. "Nim's syntax
is strongly reminiscent of Python's, as it uses indented code blocks and some of the
same syntax (such as the way if/elif/then/else blocks are constructed)."
246. "An Interview with the Creator of Ruby" (http://www.linuxdevcenter.com/pub/a/linux/2
001/11/29/ruby.html) . Linuxdevcenter.com. Archived (https://web.archive.org/web/2
0180428150410/http://www.linuxdevcenter.com/pub/a/linux/2001/11/29/ruby.html)
from the original on 28 April 2018. Retrieved 3 December 2012.
248. Jalan, Nishant Aanjaney (10 November 2022). "Programming in Kotlin" (https://medium.c
om/codex/programming-in-kotlin-934bdb3659cf) . CodeX. Retrieved 29 April 2024.
249. Kupries, Andreas; Fellows, Donal K. (14 September 2000). "TIP #3: TIP Format" (http://w
ww.tcl.tk/cgi-bin/tct/tip/3.html) . tcl.tk. Tcl Developer Xchange. Archived (https://w
eb.archive.org/web/20170713233954/http://tcl.tk/cgi-bin/tct/tip/3.html) from the
original on 13 July 2017. Retrieved 24 November 2008.
250. Gustafsson, Per; Niskanen, Raimo (29 January 2007). "EEP 1: EEP Purpose and Guidelines"
(http://www.erlang.org/eeps/eep-0001.html) . erlang.org. Archived (https://web.arc
hive.org/web/20200615153206/http://erlang.org/eeps/eep-0001.html) from the
original on 15 June 2020. Retrieved 19 April 2011.
Sources
"Python for Artificial Intelligence" (https://web.archive.org/web/20121101045354/http://
wiki.python.org/moin/PythonForArtificialIntelligence) . Python Wiki. 19 July 2012.
Archived from the original (https://wiki.python.org/moin/PythonForArtificialIntelligenc
e) on 1 November 2012. Retrieved 3 December 2012.
Paine, Jocelyn, ed. (August 2005). "AI in Python" (https://web.archive.org/web/2012032610
5810/http://www.ainewsletter.com/newsletters/aix_0508.htm#python_ai_ai) . AI Expert
Newsletter. Amzi!. Archived from the original (http://www.ainewsletter.com/newsletter
s/aix_0508.htm#python_ai_ai) on 26 March 2012. Retrieved 11 February 2012.
Russell, Stuart J. & Norvig, Peter (2009). Artificial Intelligence: A Modern Approach
(3rd ed.). Upper Saddle River, NJ: Prentice Hall. ISBN 978-0-13-604259-4.
Further reading
Downey, Allen B. (May 2012). Think Python: How to Think Like a Computer Scientist (version
1.6.6 ed.). Cambridge University Press. ISBN 978-0-521-72596-5.
Hamilton, Naomi (5 August 2008). "The A-Z of Programming Languages: Python" (https://we
b.archive.org/web/20081229095320/http://www.computerworld.com.au/index.php/id%3B
66665771) . Computerworld. Archived from the original (http://www.computerworld.co
m.au/index.php/id;66665771) on 29 December 2008. Retrieved 31 March 2010.
Lutz, Mark (2013). Learning Python (5th ed.). O'Reilly Media. ISBN 978-0-596-15806-4.
External links