History
,
union type operator and added structural match
and case
keywords. Python 3.11 expanded type
. Notable changes from version 3.10 to 3.11 include increased program execution speed and improved error reporting. Python 3.11 is claimed to be 10–60% faster than Python 3.10, and Python 3.12 increases by an additional 5%. Python 3.12 also includes improved error messages (again improved in 3.14) and many other changes.
Python 3.13 introduced more syntax for types; a new and improved interactive interpreter ( REPL), featuring multi-line editing and color support; an incremental garbage collector, which results in shorter pauses for collection in programs that have many objects, as well as increasing the improved speed in 3.11 and 3.12); an ''experimental'' just-in-time (JIT) compiler (such features need to be enabled specifically for the increase in speed); and an ''experimental'' free-threaded build mode, which disables the python3.13t
or python3.13t.exe
.
Python Enhancement Proposal (PEP) 711 proposes PyBI—a standard format for distributing Python binaries.
Python 3.14.0 is now in the beta 1 phase (introduces e.g. a new opt-in interpreter, up to 30% faster).
Python 3.15 will "Make UTF-8 mode default"; This mode is supported in all current Python versions, but it currently must be opted into. 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. Python 3.12 removed wstr
meaning Python extensions need to be modified.
Python 3.13 introduces some changes in behavior, i.e., new "well-defined semantics", fixing bugs, and removing many deprecated classes, functions and methods (as well as some of the Python/C API and outdated modules). "The old implementation of locals()
and frame.f_locals
was slow, inconsistent and buggy, and it had many corner cases and oddities. Code that works around those may need revising; code that uses locals()
for simple templating or print debugging should continue to work correctly."
Python 3.13 introduces the experimental free-threaded build mode, which disables the Global Interpreter Lock (GIL); the GIL is a feature of CPython that previously prevented multiple threads from executing Python bytecode simultaneously. This optional build, introduced through PEP 703, enables better exploitation of multi-core CPUs. By allowing multiple threads to run Python code in parallel, the free-threaded mode addresses long-standing performance bottlenecks associated with the GIL. This change offers a new path for parallelism in Python, without resorting to multiprocessing or external concurrency frameworks.
Regarding annotations in upcoming Python version: "In Python 3.14, from __future__ import annotations
will continue to work as it did before, converting annotations into strings."
Python 3.14 drops the PGP digital verification signatures, it had deprecated in version 3.11, when its replacement Sigstore was added for all CPython artifacts; the use of PGP has been criticized by security practitioners.
Some additional standard-library modules will be removed in Python 3.15 or 3.16, as will be many deprecated classes, functions and methods.
Design philosophy and features
Python is aSyntax and semantics
Indentation
Python usesStatements and control flow
Python's statements include the following: * The assignment statement, using a single equals sign=
* The if
statement, which conditionally executes a block of code, along with else
and elif
(a contraction of else if
)
* The for
For or FOR may refer to:
English language
*For, a preposition
*For, a complementizer
*For, a grammatical conjunction
Science and technology
* Fornax, a constellation
* for loop, a programming language statement
* Frame of reference, in physics
* ...
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 boolean 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); the try
statement 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 def
statement, which defines a function or with
statement, which encloses a code block within a context manager, allowing resource-acquisition-is-initialization (RAII)-like behavior and replacing a common try/finally idiom Examples of a context include acquiring a break
statement, which exits a loop
* 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 (i.e., no operation), which is syntactically needed to create an empty code block
* The assert
Assertion or assert may refer to:
Computing
* Assertion (software development), a computer programming technique
* assert.h, a header file in the standard library of the C programming language
* Assertion definition language, a specification lan ...
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 return
statement, used to return a value from a function
* The import
An importer is the receiving country in an export from the sending country. Importation and exportation are the defining financial transactions of international trade. Import is part of the International Trade which involves buying and receivin ...
and from
statements, used to import modules whose functions or variables can be used in the current program
* The match
and case
statements, analogous to a =
) binds a name as a Expressions
Python's expressions include the following: * The+
, -
, and *
operators for mathematical addition, subtraction, and multiplication are similar to other languages, but the behavior of division differs. There are two types of division in Python: floor division (or integer division) //
, and floating-point division /
. Python uses the **
operator for exponentiation.
* Python uses the +
operator for string concatenation. The language uses the *
operator for duplicating a string a specified number of times.
* The @
infix operator is intended to be used by libraries such as NumPy for :=
, called the "walrus operator", was introduced in Python 3.8. This operator assigns values to variables as part of a larger expression.
* In Python,
compares two objects by value. Python's is
operator may be used to compare object identities (i.e., comparison by reference), and comparisons may be chained—for example, .
* Python uses and
, or
, and not
as Boolean operators.
* Python has a type of expression called a '' c ? x : y
operator common to many other languages.)
* Python makes a distinction between lists and +
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. For example, given the variable t
initially equal to , executing first evaluates , which yields ; this result 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.
* Python features ''sequence unpacking'' where multiple expressions, each evaluating to something assignable (e.g., a variable or a writable property) are associated just as in forming tuple literal; as a whole, the results are then put on the left-hand side of the equal sign in an assignment statement. This statement expects an ''iterable'' object on the right-hand side of the equal sign to produce the same number of values as the writable expressions on the left-hand side; while iterating, the statement assigns each of the values produced on the right to the corresponding expression on the left.
* Python has a "string format" operator %
that functions analogously to printf
printf is a C standard library function that formats text and writes it to standard output. The function accepts a format c-string argument and a variable number of value arguments that the function serializes per the format string. Mism ...
format strings in the C language—e.g. evaluates to "spam=blah eggs=2"
. In Python 2.6+ and 3+, this operator was supplemented by the format()
method of the str
class, e.g., . Python 3.6 added "f-strings": .
* Strings in Python can be concatenated by "adding" them (using the same operator as for adding integers and floats); e.g., returns "spameggs"
. If strings contain numbers, they are concatenated as strings rather than as integers, e.g. returns "22"
.
* Python supports \
) as an r
. Escape sequences are not interpreted; hence raw strings are useful where literal backslashes are common, such as in @
-quoting" in C#.)
* Python has a ey/code>, or . 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 (optional) third slice parameter
A parameter (), generally, is any characteristic that can help in defining or classifying a particular system (meaning an event, project, object, situation, etc.). That is, a parameter is an element of a system that is useful, or critical, when ...
, called ''step'' or ''stride'', allows elements to be skipped or reversed. Slice indexes may be omitted—for example, returns a copy of the entire list. Each element of a slice is a shallow copy.
In Python, a distinction between expressions and statements is rigidly enforced, in contrast to languages such as Common Lisp
Common Lisp (CL) is a dialect of the Lisp programming language, published in American National Standards Institute (ANSI) standard document ''ANSI INCITS 226-1994 (S2018)'' (formerly ''X3.226-1994 (R1999)''). The Common Lisp HyperSpec, a hyperli ...
, Scheme, or Ruby
Ruby is a pinkish-red-to-blood-red-colored gemstone, a variety of the mineral corundum ( aluminium oxide). Ruby is one of the most popular traditional jewelry gems and is very durable. Other varieties of gem-quality corundum are called sapph ...
. This distinction leads to duplicating some functionality, for example:
* List comprehensions vs. for
-loops
* Conditional expressions vs. if
blocks
* The eval()
vs. exec()
built-in functions (in Python 2, exec
is a statement); the former function is for expressions, while the latter is for statements
A statement cannot be part of an expression; because of this restriction, expressions such as list and dict
comprehensions (and lambda expressions) cannot contain statements. As a particular case, an assignment statement such as cannot be part of the conditional expression of a conditional statement.
Methods
Methods of objects are functions attached to the object's class; the syntax for normal methods and functions, , is syntactic sugar
In computer science, syntactic sugar is syntax within a programming language that is designed to make things easier to read or to express. It makes the language "sweeter" for human use: things can be expressed more clearly, more concisely, or in an ...
for . Python methods have an explicit self
In philosophy, the self is an individual's own being, knowledge, and values, and the relationship between these attributes.
The first-person perspective distinguishes selfhood from personal identity. Whereas "identity" is (literally) same ...
parameter to access instance data, in contrast to the implicit self (or this
) parameter in some object-oriented programming languages (e.g., C++, Java
Java is one of the Greater Sunda Islands in Indonesia. It is bordered by the Indian Ocean to the south and the Java Sea (a part of Pacific Ocean) to the north. With a population of 156.9 million people (including Madura) in mid 2024, proje ...
, Objective-C
Objective-C is a high-level general-purpose, object-oriented programming language that adds Smalltalk-style message passing (messaging) to the C programming language. Originally developed by Brad Cox and Tom Love in the early 1980s, it was ...
, Ruby
Ruby is a pinkish-red-to-blood-red-colored gemstone, a variety of the mineral corundum ( aluminium oxide). Ruby is one of the most popular traditional jewelry gems and is very durable. Other varieties of gem-quality corundum are called sapph ...
). Python also provides methods, often called ''dunder methods'' (because their names begin and end with double underscores); these methods allow user-defined classes to modify how they are handled by native operations including length, comparison, arithmetic
Arithmetic is an elementary branch of mathematics that deals with numerical operations like addition, subtraction, multiplication, and division. In a wider sense, it also includes exponentiation, extraction of roots, and taking logarithms.
...
, and type conversion.
Typing
Python uses duck typing
In computer programming, duck typing is an application of the duck test—"If it walks like a duck and it quacks like a duck, then it must be a duck"—to determine whether an object can be used for a particular purpose. With nominative ...
, and it has typed objects but untyped variable names. Type constraints are not checked at definition time; rather, operations on an object may fail at usage time, indicating that the object is not of an appropriate type. Despite being dynamically typed
In computer programming, a type system is a logical system comprising a set of rules that assigns a property called a ''type'' (for example, integer, floating point, string) to every '' term'' (a word, phrase, or other set of symbols). Usua ...
, Python is strongly typed, forbidding operations that are poorly defined (e.g., adding a number and a string) rather than quietly attempting to interpret them.
Python allows programmers to define their own types using classes, most often for object-oriented programming
Object-oriented programming (OOP) is a programming paradigm based on the concept of '' objects''. Objects can contain data (called fields, attributes or properties) and have actions they can perform (called procedures or methods and impl ...
. New object (computer science), instances of classes are constructed by calling the class, for example, or ); the classes are instances of the metaclass type
(which is an instance of itself), thereby allowing metaprogramming and Reflective programming, reflection.
Before version 3.0, Python had two kinds of classes, both using the same syntax: ''old-style'' and ''new-style''. Current Python versions support the semantics of only the new style.
Python supports optional typing, optional type annotations. These annotations are not enforced by the language, but may be used by external tools such as mypy to catch errors. Mypy also supports a Python compiler called mypyc, which leverages type annotations for optimization.
Arithmetic operations
Python includes conventional symbols for arithmetic operators (+
, -
, *
, /
), the floor-division operator //
, and the modulo operation, modulo operator %
. (With the module operator, a remainder can be negative, e.g., 4 % -3 -2
.) Python also offers the **
symbol for exponentiation, e.g. 5**3 125
and 9**0.5 3.0
; it also offers the matrix‑multiplication operator @
. These operators work as in traditional mathematics; with the same order of operations, precedence rules, the infix notation, infix operators +
and -
can also be unary operation, unary, to represent positive and negative numbers respectively.
Division between integers produces floating-point results. The behavior of division has changed significantly over time:
* The current version of Python (i.e., since 3.0) changed the /
operator to always represent floating-point division, e.g., .
* The floor division //
operator was introduced. Thus 7//3 2
, -7//3 -3
, 7.5//3 2.0
, and -7.5//3 -3.0
. For outdated Python 2.7 adding the statement causes a module in Python 2.7 to use Python 3.0 rules for division instead (see above).
In Python terms, the /
operator represents ''true division'' (or simply ''division''), while the //
operator represents ''floor division.'' Before version 3.0, the /
operator represents ''classic division''.
Rounding towards negative infinity, though a different method than in most languages, adds consistency to Python. For instance, this rounding implies that the equation is always true. The rounding also implies that the equation is valid for both positive and negative values of a
. As expected, the result of a%b
lies in the half-open interval [0, ''b''), where b
is a positive integer; however, maintaining the validity of the equation requires that the result must lie in the interval (''b'', 0] when b
is negative.
Python provides a round
function for rounding a float to the nearest integer. For Rounding#Tie-breaking, tie-breaking, Python 3 uses the ''round to even'' method: round(1.5)
and round(2.5)
both produce 2
. Python versions before 3 used the Rounding#Rounding away from zero, round-away-from-zero method: round(0.5)
is 1.0
, and round(-0.5)
is −1.0
.
Python allows Boolean expressions that contain multiple equality relations to be 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
.
Python uses arbitrary-precision arithmetic for all integer operations. The Decimal
type/class in the decimal
module provides decimal floating point, decimal floating-point numbers to a pre-defined arbitrary precision with several rounding modes. The Fraction
class in the fractions
module provides arbitrary precision for rational numbers.
Due to Python's extensive mathematics library and the third-party library NumPy, the language is frequently used for scientific scripting in tasks such as numerical data processing and manipulation.
Function syntax
Function (computer programming), Functions are created in Python by using the def
keyword. A function is defined similarly to how it is called, by first providing the function name and then the required parameters. Here is an example of a function that prints its inputs:
def printer(input1, input2="already there"):
print(input1)
print(input2)
printer("hello")
# Example output:
# hello
# already there
To assign a default value to a function parameter in case no actual value is provided at run time, variable-definition syntax can be used inside the function header.
Code examples
"Hello, World!" program:
print('Hello, world!')
Program to calculate the factorial of a positive integer:
n = int(input('Type a number, and its factorial will be printed: '))
if n < 0:
raise ValueError('You must enter a non-negative integer')
factorial = 1
for i in range(2, n + 1):
factorial *= i
print(factorial)
Libraries
Python's large standard library 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. The language includes modules for creating graphical user interfaces, connecting to relational databases, pseudorandom number generator, generating pseudorandom numbers, arithmetic with arbitrary-precision decimals, manipulating regular expression
A regular expression (shortened as regex or regexp), sometimes referred to as rational expression, is a sequence of characters that specifies a match pattern in text. Usually such patterns are used by string-searching algorithms for "find" ...
s, 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—but most parts 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 must be altered or rewritten for variant implementations.
the Python Package Index (PyPI), the official repository for third-party Python software, contains over 614,339 packages. These have a wide range of functionality, including the following:
Development environments
Most Python implementations (including CPython) include a read–eval–print loop (REPL); this permits the environment to function as a command line interpreter, with which users enter statements sequentially and receive results immediately.
Python is also bundled with an integrated development environment, integrated development environment (IDE) called IDLE, which is oriented toward beginners.
Other shells, including IDLE and IPython, add additional capabilities such as improved auto-completion, session-state retention, and syntax highlighting.
Standard desktop IDEs include PyCharm, IntelliJ Idea, Visual Studio Code; there are also web browser-based IDEs, such as the following environments:
* SageMath, for developing science- and math-related programs;
* Project Jupyter, Jupyter Notebooks, an open-source interactive computing platform;
* PythonAnywhere, a browser-based IDE and hosting environment; and
* Canopy IDE, a commercial IDE that emphasizes scientific computing.
Implementations
Reference implementation
CPython
CPython is the reference implementation of the Python programming language. Written in C and Python, CPython is the default and most widely used implementation of the Python language.
CPython can be defined as both an interpreter and a comp ...
is the reference implementation of Python. This implementation is written in C, meeting the C11 (C standard revision), C11 standard (since version 3.11, older versions use the C89 (C version), C89 standard with several select C99 features), but third-party extensions are not limited to older C versions—e.g., they can be implemented using C11 or C++. CPython compiler, compiles Python programs into an intermediate bytecode, which is then executed by a virtual machine. CPython is distributed with a large standard library written in a combination of C and native Python.
CPython is available for many platforms, including Windows and most modern Unix-like systems, including macOS (and Apple M1 Macs, since Python 3.9.1, using an experimental installer). Starting with Python 3.9, the Python installer intentionally fails to install on Windows 7 and 8; Windows XP was supported until Python 3.5, with unofficial support for OpenVMS, VMS. Platform portability was one of Python's earliest priorities. During development of Python 1 and 2, even OS/2 and Solaris (operating system), Solaris were supported; since that time, support has been dropped for many platforms.
All current Python versions (since 3.7) support only operating systems that feature multithreading, by now supporting not nearly as many operating systems (dropping many outdated) than in the past.
Other implementations
All alternative implementations have at least slightly different semantic. For example, an alternative may include unordered dictionaries, in contrast to other current Python versions. As another example in the larger Python ecosystem, PyPy does not support the full C Python API. Alternative implementations include the following:
* PyPy is a fast, compliant interpreter of Python 2.7 and 3.10. PyPy's just-in-time compiler
In computing, just-in-time (JIT) compilation (also dynamic translation or run-time compilations) is compiler, compilation (of Source code, computer code) during execution of a program (at run time (program lifecycle phase), run time) rather than b ...
often improves speed significantly relative to CPython, but PyPy does not support some libraries written in C. PyPy offers support for the RISC-V instruction-set architecture, for example.
* Codon is an implentation with an ahead-of-time compilation, ahead-of-time (AOT) compiler, which compiles a statically-typed Python-like language whose "syntax and semantics are nearly identical to Python's, there are some notable differences" For example, Codon uses 64-bit machine integers for speed, not arbitrarily as with Python; Codon developers claim that speedups over CPython are usually on the order of ten to a hundred times. Codon compiles to machine code (via LLVM) and supports native multithreading. Codon can also compile to Python extension modules that can be imported and used from Python.
* MicroPython and CircuitPython are Python 3 variants that are optimized for microcontrollers, including the Lego Mindstorms EV3.
* Pyston is a variant of the Python runtime that uses just-in-time compilation to speed up execution of Python programs.
* Cinder is a performance-oriented fork of CPython 3.8 that features a number of optimizations, including bytecode inline caching, eager evaluation of coroutines, a method-at-a-time Just-in-time compilation, JIT, and an experimental bytecode compiler.
* The Snek embedded computing language "is Python-inspired, but it is not Python. It is possible to write Snek programs that run under a full Python system, but most Python programs will not run under Snek." Snek is compatible with 8-bit AVR microcontrollers such as ATmega, ATmega 328P-based Arduino, as well as larger microcontrollers that are compatible with MicroPython. Snek is an imperative language that (unlike Python) omits object-oriented programming
Object-oriented programming (OOP) is a programming paradigm based on the concept of '' objects''. Objects can contain data (called fields, attributes or properties) and have actions they can perform (called procedures or methods and impl ...
. Snek supports only one numeric data type, which features 32-bit single-precision, single precision (resembling JavaScript numbers, though smaller).
Unsupported implementations
Stackless Python is a significant fork of CPython that implements microthreads. This implementation uses the call stack differently, thus allowing massively concurrent programs. PyPy also offers a stackless version.
Just-in-time Python compilers have been developed, but are now unsupported:
* Google began a project named Unladen Swallow in 2009: this project aimed to speed up the Python interpreter five-fold by using LLVM, and improve multithreading (computer architecture), multithreading capability for scaling to thousands of cores, while typical implementations are limited by the global interpreter lock
A global interpreter lock (GIL) is a mechanism used in computer-language Interpreter (computing), interpreters to synchronize the execution of Threads (computer science), threads so that only one native thread (per process) can execute basic ope ...
.
* Psyco is a discontinued just-in-time compilation, just-in-time run-time algorithm specialization, specializing compiler, which integrates with CPython and transforms bytecode to machine code at runtime. The emitted code is specialized for certain data types and is faster than standard Python code. Psyco does not support Python 2.7 or later.
* PyS60 was a Python 2 interpreter for Series 60 mobile phones, which was released by Nokia in 2005. The interpreter implemented many modules from Python's standard library, as well as additional modules for integration with the Symbian operating system. The Nokia N900 also supports Python through the GTK widget library, allowing programs to be written and run on the target device.
Cross-compilers to other languages
There are several compilers/transpilers to high-level object languages; the source language is unrestricted Python, a subset of Python, or a language similar to Python:
* Brython, Transcrypt, and Pyjs compile Python to JavaScript. (The latest release of Pyjs was in 2012.)
* Cython compiles a superset of Python to C. The resulting code can be used with Python via direct C-level API calls into the Python interpreter.
* PyJL compiles/transpiles a subset of Python to "human-readable, maintainable, and high-performance Julia source code". Despite the developers' performance claims, this is not possible for ''arbitrary'' Python code; that is, compiling to a faster language or machine code is known to be impossible in the general case. The semantics of Python might potentially be changed, but in many cases speedup is possible with few or no changes in the Python code. The faster Julia source code can then be used from Python or compiled to machine code.
* Nuitka compiles Python into C. This compiler 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. The compiler developers claim full support for Python 3.10, partial support for Python 3.11 and 3.12, and experimental support for Python 3.13. Nuitka supports macOS including Apple Silicon-based versions. The compiler is free of cost, though it has commercial add-ons (e.g., for hiding source code).
* Numba is a JIT compiler that is used from Python; the compiler translates a subset of Python and NumPy code into fast machine code. This tool is enabled by adding a decorator to the relevant Python code.
* Pythran compiles a subset of Python 3 to C++ (C++11).
* RPython can be compiled to C, and it is used to build the PyPy interpreter for Python.
* The Python → 11l → C++ transpiler compiles a subset of Python 3 to C++ (C++17).
There are also specialized compilers:
* MyHDL is a Python-based hardware description language (HDL) that converts MyHDL code to Verilog or VHDL code.
Some older projects existed, as well as compilers not designed for use with Python 3.x and related syntax:
* Google's Grumpy transpiles Python 2 to Go (programming language), Go. The latest release was in 2017.
* IronPython allows running Python 2.7 programs with the .NET Common Language Runtime. An Software release life cycle#Alpha, alpha version (released in 2021), is available for "Python 3.4, although features and behaviors from later versions may be included."
* Jython compiles Python 2.7 to Java bytecode, allowing the use of Java libraries from a Python program.
* Pyrex (programming language), Pyrex (last released in 2010) and Shed Skin (last released in 2013) compile to C and C++ respectively.
Performance
A perforance comparison among various Python implementations, using a non-numerical (combinatorial) workload, was presented at EuroSciPy '13. In addition, Python's performance relative to other programming languages is benchmarked by The Computer Language Benchmarks Game.
There are several approaches to optimizing Python performance, given the inherent slowness of an interpreted language. These approaches include the following strategies or tools:
* Just-in-time compilation: Dynamically compiling Python code just before it is executed. This technique is used in libraries such as Numba and PyPy.
* Compiler, Static compilation: Python code is compiled into machine code sometime before execution. An example of this approach is Cython, which compiles Python into C.
* Concurrency and parallelism: Multiple tasks can be run simultaneously. Python contains modules such as `multiprocessing` to support this form of parallelism. Moreover, this approach helps to overcome limitations of the Global interpreter lock, Global Interpreter Lock (GIL) in CPU tasks.
* Efficient data structures: Performance can also be improved by using data types such as Set
for membership tests, or deque
from collections
for Queueing theory, queue operations.
Language Development
Python's development is conducted largely through the ''Python Enhancement Proposal'' (PEP) process; this process is the primary mechanism for proposing major new features, collecting community input on issues, and documenting Python design decisions. Python coding style is covered in PEP 8. Outstanding PEPs are reviewed and commented on by the Python community and the steering council.
Enhancement of the language corresponds with 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 (issue tracker), Roundup bug tracker hosted by the foundation. In 2022, all issues and discussions were migrated to GitHub. Development originally took place on a Self-hosting (web services), self-hosted source-code repository running Mercurial, until Python moved to GitHub in January 2017.
CPython's public releases have three types, distinguished by which part of the version number is incremented:
* ''Backward-incompatible versions'', where code is expected to break and must be manually ported. The first part of the version number is incremented. These releases happen infrequently—version 3.0 was released 8 years after 2.0. According to Guido van Rossum, a version 4.0 will probably never exist.
* ''Major or "feature" releases'' are largely compatible with the previous version but introduce new features. The second part of the version number is incremented. Starting with Python 3.9, these releases are expected to occur annually. Each major version is supported by bug fixes for several years after its release.
* ''Bug fix releases'', which introduce no new features, occur approximately every three months; these releases are made when a sufficient number of bugs have been fixed Upstream (software development), upstream since the last release. Security vulnerabilities are also patched in these releases. The third and final part of the version number is incremented.
Many beta release, alpha, beta, and release-candidates are also released as previews and for testing before final releases. Although there is a rough schedule for releases, they are often delayed if the code is not ready yet. Python's development team monitors the state of the code by running a large unit test suite during development.
The major academic conference on Python is PyCon. There are also special Python mentoring programs, such as PyLadies.
API documentation generators
Tools that can generate documentation for Python API include pydoc (available as part of the standard library); Sphinx (documentation generator), Sphinx; and Pdoc and its forks, Doxygen and Graphviz.
Naming
Python's name is inspired by the British comedy group Monty Python
Monty Python, also known as the Pythons, were a British comedy troupe formed in 1969 consisting of Graham Chapman, John Cleese, Terry Gilliam, Eric Idle, Terry Jones and Michael Palin. The group came to prominence for the sketch comedy ser ...
, whom Python creator Guido van Rossum enjoyed while developing the language. Monty Python references appear frequently in Python code and culture; for example, the metasyntactic variables often used in Python literature are Spam (Monty Python), ''spam'' and ''eggs'', rather than the traditional foobar, ''foo'' and ''bar''. The official Python documentation also contains various references to Monty Python routines. Python users are sometimes referred to as "Pythonistas".
The affix ''Py'' is often used when naming Python applications or libraries. Some examples include the following:
* Pygame, a language binding, binding of Simple DirectMedia Layer to Python (commonly used to create games);
* PyQt and PyGTK, which bind Qt (software), Qt and GTK to Python respectively;
* PyPy, a Python implementation originally written in Python;
* NumPy, a Python library for numerical processing.
Popularity
Since 2003, Python has consistently ranked in the top ten of the most popular programming languages in the TIOBE Programming Community Index; , Python was the most popular language. Python 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 ). In the TIOBE Index, monthly rankings are based on the volume of searches for programming languages on Google, Amazon, Wikipedia, Bing, and 20 other platforms. According to the accompanying graph, Python has shown a marked upward trend since the early 2000s, eventually passing more established languages such as C, C++, and Java. This trend can be attributed to Python's readable syntax, comprehensive standard library, and application in data science and machine learning fields.
Large organizations that use Python include Wikipedia, Google, Yahoo!, CERN, NASA, Facebook, Amazon (company), Amazon, Instagram, Spotify, and some smaller entities such as Industrial Light & Magic and ITA Software, ITA. The social news networking site Reddit was developed mostly in Python. Organizations that partly use Python include Discord and Baidu.
Types of Use
Python has many uses, including the following:
* Scripting language, Scripting for web applications
* Scientific computing
* Artificial intelligence, Artificial-intelligence and Machine learning, machine-learning projects
* Graphical user interface, Graphical user interfaces and Desktop environment, desktop environments
* Embedded scripting in software and hardware products
* Operating systems
* Information security
Python can serve as a scripting language for web applications, e.g., via the module for the Apache webserver, Apache web server. With Web Server Gateway Interface, a standard API has evolved to facilitate these applications. Web frameworks such as Django (web framework), Django, Pylons (web framework), Pylons, Pyramid (web framework), Pyramid, TurboGears, web2py, Tornado (web server), Tornado, Flask (web framework), 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 pattern, data mapper to a relational database. Twisted (software), Twisted is a framework to program communication between computers; this framework is used by Dropbox, for example.
Libraries such as NumPy, SciPy and Matplotlib allow the effective use of Python in scientific computing, with specialized libraries such as Biopython and Astropy providing domain-specific functionality. SageMath is a computer algebra system with a notebook interface that is programmable in Python; the SageMath library covers many aspects of mathematics, including algebra, combinatorics, numerical mathematics, number theory, and calculus. OpenCV has Python bindings with a rich set of features for computer vision and image processing.
Python is commonly used in artificial-intelligence and machine-learning projects, with support from libraries such as TensorFlow, Keras, Pytorch, scikit-learn and ProbLog (a logic language). As a scripting language with a modular programming, modular architecture, simple syntax, and rich text processing tools, Python is often used for natural language processing.
The combination of Python and Prolog has proven useful for AI applications, with Prolog providing knowledge representation and reasoning capabilities. The Janus system, in particular, exploits similarities between these two languages, in part because of their dynamic typing and their simple, recursive data structures. This combination is typically applied natural language processing, visual query answering, geospatial reasoning, and handling semantic web data.
The Natlog system, implemented in Python, uses Definite clause grammar, Definite Clause Grammars (DCGs) to create prompts for two types of generators: text-to-text generators such as GPT3, and text-to-image generators such as DALL-E or Stable Diffusion.
Python can be used for graphical user interfaces (GUIs), by using libraries such as Tkinter. Similarly, for the One Laptop per Child XO computer, most of the Sugar (software), Sugar desktop environment is written in Python (as of 2008).
Python is embedded in many software products (and some hardware products) as a scripting language. These products include the following:
* finite element method software such as Abaqus,
* 3D parametric modelers such as FreeCAD,
* 3D animation packages such as 3ds Max, Blender (software), Blender, Cinema 4D, LightWave 3D, Lightwave, Houdini (software), Houdini, Maya (software), Maya, modo (software), modo, MotionBuilder, Autodesk Softimage, Softimage,
* the visual effects compositor Nuke (software), Nuke,
* 2D imaging programs such as GIMP, Inkscape, Scribus and Paint Shop Pro, and
* musical notation programs such as scorewriter and Capella (notation program), capella.
Similarly, 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. Python has also been used in several video games, and it has been adopted as first of the three programming languages available in Google App Engine (the other two being Java (software platform), Java and Go (programming language), Go). LibreOffice includes Python, and its developers plan to replace Java with Python; LibreOffice's Python Scripting Provider is a core feature since version 4.0 (from 7 February 2013).
Among hardware products, the Raspberry Pi single-board computer project has adopted Python as its main user-programming language.
Many operating systems include Python as a standard component. Python ships with most Linux distributions, AmigaOS 4 (using Python 2.7), FreeBSD (as a package), NetBSD, and OpenBSD (as a package); it can be used from the command line (terminal). Many Linux distributions use installers written in Python: Ubuntu uses the Ubiquity (software), Ubiquity installer, while Red Hat Linux and Fedora Linux use the Anaconda (installer), Anaconda installer. Gentoo Linux uses Python in its package management system, Portage (software), Portage.
Python is used extensively in the information security industry, including in exploit development.
Languages influenced by Python
Python's design and philosophy have influenced many other programming languages:
* Boo (programming language), Boo uses indentation, a similar syntax, and a similar object model.
* Cobra (programming language), Cobra uses indentation and a similar syntax; its ''Acknowledgements'' document lists Python first among influencing languages.
* CoffeeScript, a programming language that cross-compiles to JavaScript, has a Python-inspired syntax.
* ECMAScript–JavaScript borrowed iterators and generator (computer science), generators from Python.
* GDScript, a Python-like scripting language that is built in to the Godot (game engine), Godot game engine.
* Go (programming language), Go is designed for "speed of working in a dynamic language like Python"; Go shares Python's syntax for slicing arrays.
* Groovy (programming language), Groovy was motivated by a desire to incorporate the Python design philosophy into Java
Java is one of the Greater Sunda Islands in Indonesia. It is bordered by the Indian Ocean to the south and the Java Sea (a part of Pacific Ocean) to the north. With a population of 156.9 million people (including Madura) in mid 2024, proje ...
.
* Julia (programming language), Julia was designed to be "as usable for general programming as Python".
* Mojo (programming language), Mojo is a non-strict superset of Python (e.g., omitting classes, and adding struct).
* Nim (programming language), Nim uses indentation and a similar syntax.
* Ruby
Ruby is a pinkish-red-to-blood-red-colored gemstone, a variety of the mineral corundum ( aluminium oxide). Ruby is one of the most popular traditional jewelry gems and is very durable. Other varieties of gem-quality corundum are called sapph ...
's creator, Yukihiro Matsumoto, said that "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."
* Swift (programming language), Swift, a programming language developed by Apple, has some Python-inspired syntax.
* Kotlin (programming language), Kotlin blends Python and Java features, which minimizes boilerplate code and enhances developer efficiency.
Python's development practices have also been emulated by other languages. For example, Python requires a document that describes the rationale and context for any language change; this document is known as a ''Python Enhancement Proposal'' or PEP. This practice is also used by the developers of Tcl, Erlang (programming language), Erlang, and Swift.
See also
* Python syntax and semantics
* pip (package manager)
* List of programming languages
* History of programming languages
* Comparison of programming languages
Notes
References
Sources
*
*
*
*
Further reading
*
*
*
*
External links
*
The Python Tutorial
{{Authority control
Python (programming language),
Articles with example Python (programming language) code
Class-based programming languages
Notebook interface
Computer science in the Netherlands
Concurrent programming languages
Cross-platform free software
Cross-platform software
Dutch inventions
Dynamically typed programming languages
Educational programming languages
High-level programming languages
Information technology in the Netherlands
Multi-paradigm programming languages
Object-oriented programming languages
Pattern matching programming languages
Programming languages
Programming languages created in 1991
Scripting languages
Text-oriented programming languages
Monty Python references