Jump to content

Python (programming language)

From Wikipedia, the free encyclopedia

Python
ParadigmMulti-paradigm:object-oriented,[1]procedural(imperative),functional,structured,reflective
Designed byGuido van Rossum
DeveloperPython Software Foundation
First appeared20 February 1991;33 years ago(1991-02-20)[2]
Stable release
3.12.4Edit this on Wikidata / 6 June 2024;17 days ago(6 June 2024)
Typing disciplineduck,dynamic,strong;[3]optional type annotations(since 3.5, but those hints are ignored, except with unofficial tools)[4]
OSTier 1:64-bitLinux,macOS;64- and 32-bitWindows10+[5]
Tier 2:E.g. 32-bitWebAssembly(WASI)Tier 3:64-bitFreeBSD,iOS;e.g.Raspberry Pi OS
Unofficial (or has been known to work): OtherUnix-like/BSDvariants and e.g.Android5.0+ (official from Python 3.13 planned[6]) and a few other platforms[7][8][9]
LicensePython Software Foundation License
Filename extensions.py,.pyw,.pyz,[10]
.pyi,.pyc,.pyd
Websitepython.org
Majorimplementations
CPython,PyPy,Stackless Python,MicroPython,CircuitPython,IronPython,Jython
Dialects
Cython,RPython,Starlark[11]
Influenced by
ABC,[12]Ada,[13]ALGOL 68,[14]
APL,[15]C,[16]C++,[17]CLU,[18]Dylan,[19]
Haskell,[20][15]Icon,[21]Lisp,[22]
Modula-3
,[14][17]Perl,[23]Standard ML[15]
Influenced
Apache Groovy,Boo,Cobra,CoffeeScript,[24]D,F#,GDScript,Genie,[25]Go,JavaScript,[26][27]Julia,[28]Mojo,[29]Nim,Ring,[30]Ruby,[31]Swift[32]

Pythonis ahigh-level,general-purpose programming language.Its design philosophy emphasizescode readabilitywith the use ofsignificant indentation.[33]

Python isdynamically typedandgarbage-collected.It supports multipleprogramming paradigms,includingstructured(particularlyprocedural),object-orientedandfunctional programming.It is often described as a "batteries included" language due to its comprehensivestandard library.[34][35]

Guido van Rossumbegan working on Python in the late 1980s as a successor to theABC programming languageand first released it in 1991 as Python 0.9.0.[36]Python 2.0 was released in 2000. Python 3.0, released in 2008, was a major revision not completelybackward-compatiblewith earlier versions. Python 2.7.18, released in 2020, was the last release of Python 2.[37]

Python consistently ranks as one of the most popular programming languages, and has gained widespread use in themachine learningcommunity.[38][39][40][41]

History[edit]

The designer of Python,Guido van Rossum,atOSCON2006

Python was invented in the late 1980s[42]byGuido van RossumatCentrum Wiskunde & Informatica(CWI) in theNetherlandsas a successor to theABC programming language,which was inspired bySETL,[43]capable ofexception handlingand interfacing with theAmoebaoperating system.[12]Its implementation began in December 1989.[44]Van Rossum shouldered sole responsibility for the 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-maker[45](he's since come out of retirement and is self-titled "BDFL-emeritus" ). In January 2019, active Python core developers elected a five-member Steering Council to lead the project.[46][47]

Python 2.0 was released on 16 October 2000, with many major new features such aslist comprehensions,cycle-detectinggarbage collection,reference counting,andUnicodesupport.[48]Python 3.0, released on 3 December 2008, with many of its major featuresbackportedto Python 2.6.x[49]and 2.7.x. Releases of Python 3 include the2to3utility, which automates the translation of Python 2 code to Python 3.[50]

Python 2.7'send-of-lifewas initially set for 2015, then postponed to 2020 out of concern that a large body of existing code could not easily be forward-ported to Python 3.[51][52]No further security patches or other improvements will be released for it.[53][54]Currently only 3.8 and later are supported (2023 security issues were fixed in e.g. 3.7.17, the final 3.7.x release[55]). While Python 2.7 and older is officially unsupported, a different unofficial Python implementation,PyPy,continues to support Python 2, i.e. "2.7.18+" (plus 3.9 and 3.10), with the plus meaning (at least some) "backportedsecurity updates ".[56]

In 2021 (and again twice in 2022), security updates were expedited, since all Python versions were insecure (including 2.7[57]) because of security issues leading to possibleremote code execution[58]andweb-cache poisoning.[59]In 2022, Python 3.10.4 and 3.9.12 were expedited[60]and 3.8.13, because of many security issues.[61]When Python 3.9.13 was released in May 2022, it was announced that the 3.9 series (joining the older series 3.8 and 3.7) would only receive security fixes in the future.[62]On 7 September 2022, four new releases were made due to a potentialdenial-of-service attack:3.10.7, 3.9.14, 3.8.14, and 3.7.14.[63][64]

As of October 2023,Python 3.12 is the stable release, and 3.12 and 3.11 are the only versions with active (as opposed to just security) support. Notable changes in 3.11 from 3.10 include increased program execution speed and improved error reporting.[65]

Every Python release since 3.5 has added some syntax to the language. 3.10 added the|union type operator[66]and thematchandcasekeywords (for structuralpattern matchingstatements). 3.11 expandedexception handlingfunctionality. Python 3.12 added the new keywordtype.

Python 3.11 claims to be between 10 and 60% faster than Python 3.10, and Python 3.12 adds another 5% on top of that. It also has improved error messages, and many other changes.

Since 27 June 2023,Python 3.8 is the oldest supported version of Python (albeit in the 'security support' phase), due to Python 3.7 reachingend-of-life.[67]

Python 3.13 introduced an incremental garbage collector (producing shorter pauses for collection in programs with a lot of objects); an experimentalJIT compiler;[68]and removals from the C API. Some standard library modules and many deprecated classes, functions and methods, will be removed in Python 3.15 and or 3.16.[69][70]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).

Design philosophy and features[edit]

Python is amulti-paradigm programming language.Object-oriented programmingandstructured programmingare fully supported, and many of their features support functional programming andaspect-oriented programming(includingmetaprogramming[71]andmetaobjects).[72]Many other paradigms are supported via extensions, includingdesign by contract[73][74]andlogic programming.[75]

Python usesdynamic typingand a combination ofreference countingand a cycle-detecting garbage collector formemory management.[76]It uses dynamicname resolution(late binding), which binds method and variable names during program execution.

Its design offers some support for functional programming in theLisptradition. It hasfilter,mapandreducefunctions;list comprehensions,dictionaries,sets, andgeneratorexpressions.[77]The standard library has two modules (itertoolsandfunctools) that implement functional tools borrowed fromHaskellandStandard ML.[78]

Its core philosophy is summarized in theZen of Python(PEP 20), which includesaphorismssuch as:[79]

  • Beautiful is better than ugly.
  • Explicit is better than implicit.
  • Simple is better than complex.
  • Complex is better than complicated.
  • Readability counts.

However, Python features regularly violate these principles and received criticism for adding unnecessary language bloat.[80][81]Responses to these criticisms are that the Zen of Python is a guideline rather than a rule.[82]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.[83][84]

Nevertheless, rather than building all of its functionality into its core, Python was designed to be highlyextensiblevia 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 withABC,which espoused the opposite approach.[42]

Python claims to strive for a simpler, less-cluttered syntax and grammar while giving developers a choice in their coding methodology. In contrast toPerl'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.[79]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.[85]Alex Martelli,aFellowat thePython Software Foundationand Python book author, wrote: "To describe something as 'clever' isnotconsidered a compliment in the Python culture. "[86]

Python's developers usually strive to avoidpremature optimizationand reject patches to non-critical parts of theCPythonreference implementation that would offer marginal increases in speed at the cost of clarity.[87]Execution speed can be improved by moving speed-critical functions to extension modules written in languages such as C, or by using ajust-in-time compilerlikePyPy.It is also possible tocross-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.[88]

Python's developers aim for it to be fun to use. This is reflected in its name—a tribute to the British comedy groupMonty Python[89]—and in occasionally playful approaches to tutorials and reference materials, such as the use of the terms "spam" and "eggs" (a reference toa Monty Python sketch) in examples, instead of the often-used"foo" and "bar".[90][91]A commonneologismin the Python community ispythonic,which has a wide range of meanings related to program style. "Pythonic" code may use Pythonidiomswell, 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 calledunpythonic.[92]

Syntax and semantics[edit]

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 usecurly bracketsto delimit blocks, and semicolons after statements are allowed but rarely used. It has fewer syntactic exceptions and special cases thanCorPascal.[93]

Indentation[edit]

Python useswhitespaceindentation, rather thancurly bracketsor keywords, to delimitblocks.An increase in indentation comes after certain statements; a decrease in indentation signifies the end of the current block.[94]Thus, the program's visual structure accurately represents its semantic structure.[95]This feature is sometimes termed theoff-side rule.Some other languages use indentation this way; but in most, indentation has no semantic meaning. The recommended indent size is four spaces.[96]

Statements and control flow[edit]

Python'sstatementsinclude:

  • Theassignmentstatement, using a single equals sign=
  • Theifstatement, which conditionally executes a block of code, along withelseandelif(a contraction of else-if)
  • Theforstatement, which iterates over aniterableobject, capturing each element to a local variable for use by the attached block
  • Thewhilestatement, which executes a block of code as long as its condition is true
  • Thetrystatement, which allows exceptions raised in its attached code block to be caught and handled byexceptclauses (or new syntaxexcept*in Python 3.11 for exception groups[97]); it also ensures that clean-up code in afinallyblock is always run regardless of how the block exits
  • Theraisestatement, used to raise a specified exception or re-raise a caught exception
  • Theclassstatement, which executes a block of code and attaches its local namespace to aclass,for use in object-oriented programming
  • Thedefstatement, which defines afunctionormethod
  • Thewithstatement, which encloses a code block within a context manager (for example, acquiring alockbefore it is run, then releasing the lock; or opening and closing afile), allowingresource-acquisition-is-initialization(RAII)-like behavior and replacing a common try/finally idiom[98]
  • Thebreakstatement, which exits a loop
  • Thecontinuestatement, which skips the rest of the current iteration and continues with the next
  • Thedelstatement, 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
  • Thepassstatement, serving as aNOP,syntactically needed to create an empty code block
  • Theassertstatement, used in debugging to check for conditions that should apply
  • Theyieldstatement, which returns a value from ageneratorfunction (and also an operator); used to implementcoroutines
  • Thereturnstatement, used to return a value from a function
  • Theimportandfromstatements, used to import modules whose functions or variables can be used in the current program

The assignment statement (=) binds a name as areferenceto a separate, dynamically allocatedobject.Variables may subsequently be rebound at any time to any object. In Python, a variable name is a generic reference holder without a fixeddata type;however, it always refers tosomeobject with a type. This is calleddynamic typing—in contrast tostatically-typedlanguages, where each variable may contain only a value of a certain type.

Python does not supporttail calloptimization orfirst-class continuations,and, according to Van Rossum, it never will.[99][100]However, better support forcoroutine-like functionality is provided by extending Python'sgenerators.[101]Before 2.5, generators werelazyiterators;data was passed unidirectionally out of the generator. From Python 2.5 on, it is possible to pass data back into a generator function; and from version 3.3, it can be passed through multiple stack levels.[102]

Expressions[edit]

Python'sexpressionsinclude:

  • 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 divisions in Python:floor division(or integer division)//and floating-point/division.[103]Python uses the**operator for exponentiation.
  • 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 asNumPyformatrix multiplication.[104][105]
  • The syntax:=,called the "walrus operator", was introduced in Python 3.8. It assigns values to variables as part of a larger expression.[106]
  • In Python,==compares by value. Python'sisoperator may be used to compare object identities (comparison by reference), and comparisons may be chained—for example,a<=b<=c.
  • Python usesand,or,andnotas Boolean operators.
  • Python has a type of expression named alist comprehension,and a more general expression named ageneratorexpression.[77]
  • Anonymous functionsare implemented usinglambda expressions;however, there may be only one expression in each body.
  • Conditional expressions are written asxifcelsey[107](different in order of operands from thec? x: yoperator common to many other languages).
  • Python makes a distinction betweenlistsandtuples.Lists are written as[1,2,3],are mutable, and cannot be used as the keys of dictionaries (dictionary keys must beimmutablein 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 variabletinitially equal to(1,2,3),executingt=t+(4,5)first evaluatest+(4,5),which yields(1,2,3,4,5),which is then assigned back tot—thereby effectively "modifying the contents" oftwhile conforming to the immutable nature of tuple objects. Parentheses are optional for tuples in unambiguous contexts.[108]
  • Python featuressequence unpackingwhere multiple expressions, each evaluating to anything that can be assigned (to a variable, writable property, etc.) are associated in an identical manner to that forming tuple literals—and, as a whole, are put on the left-hand side of the equal sign in an assignment statement. The statement expects aniterableobject on the right-hand side of the equal sign that produces the same number of values as the provided writable expressions; when iterated through them, it assigns each of the produced values to the corresponding expression on the left.[109]
  • Python has a "string format" operator%that functions analogously toprintfformat strings in C—e.g."spam=%seggs=%d"%("blah",2)evaluates to"spam=blah eggs=2".In Python 2.6+ and 3+, this was supplemented by theformat()method of thestrclass, e.g."spam={0}eggs={1}".format("blah",2).Python 3.6 added "f-strings":spam="blah";eggs=2;f'spam={spam}eggs={eggs}'.[110]
  • Strings in Python can beconcatenatedby "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".
  • Python has variousstring literals:
    • Delimited by single or double quotes; unlike inUnix shells,Perl,and Perl-influenced languages, single and double quotes work the same. Both use the backslash (\) as anescape character.String interpolationbecame available in Python 3.6 as "formatted string literals".[110]
    • Triple-quoted (beginning and ending with three single or double quotes), which may span multiple lines and function likehere documentsin shells, Perl, andRuby.
    • Raw stringvarieties, denoted by prefixing the string literal withr.Escape sequences are not interpreted; hence raw strings are useful where literal backslashes are common, such asregular expressionsandWindows-style paths. (Compare "@-quoting "inC#.)
  • Python hasarray indexandarray slicingexpressions in lists, denoted asa[key],a[start:stop]ora[start:stop:step].Indexes arezero-based,and negative indexes are relative to the end. Slices take elements from thestartindex up to, but not including, thestopindex. The third slice parameter, calledsteporstride,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 ashallow copy.

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

  • List comprehensionsvs.for-loops
  • Conditionalexpressions vs.ifblocks
  • Theeval()vs.exec()built-in functions (in Python 2,execis a statement); the former is for expressions, the latter is for statements

Statements cannot be a part of an expression—so list and other comprehensions orlambda expressions,all being expressions, cannot contain statements. A particular case is that an assignment statement such asa=1cannot form part of the conditional expression of a conditional statement.

Methods[edit]

Methodson objects arefunctionsattached to the object's class; the syntaxinstance.method(argument)is, for normal methods and functions,syntactic sugarforClass.method(instance,argument).Python methods have an explicitselfparameter to accessinstance data,in contrast to the implicit self (orthis) in some other object-oriented programming languages (e.g.,C++,Java,Objective-C,Ruby).[111]Python also provides methods, often calleddunder 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, inarithmetic operationsand type conversion.[112]

Typing[edit]

The standard type hierarchy in Python 3

Python usesduck typingand has typed objects but untyped variable names. Type constraints are not checked atcompile time;rather, operations on an object may fail, signifying that it is not of a suitable type. Despite beingdynamically typed,Python isstrongly 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 usingclasses,most often used forobject-oriented programming.Newinstancesof classes are constructed by calling the class (for example,SpamClass()orEggsClass()), and the classes are instances of themetaclasstype(itself an instance of itself), allowing metaprogramming andreflection.

Before version 3.0, Python had two kinds of classes (both using the same syntax):old-styleandnew-style;[113]current Python versions only support the semantics of the new style.

Python supportsoptional type annotations.[4][114]These annotations are not enforced by the language, but may be used by external tools such as mypy to catch errors.[115][116]Mypy also supports a Python compiler called mypyc, which leverages type annotations for optimization.[117]

Summary of Python 3's built-in types
Type Mutability Description Syntax examples
bool immutable Boolean value True
False
bytearray mutable Sequence ofbytes bytearray(b'Some ASCII')
bytearray(b"Some ASCII")
bytearray([119,105,107,105])
bytes immutable Sequence of bytes b'Some ASCII'
b"Some ASCII"
bytes([119,105,107,105])
complex immutable Complex numberwith real and imaginary parts 3+2.7j
3+2.7j
dict mutable Associative array(or dictionary) of key and value pairs; can contain mixed types (keys and values), keys must be a hashable type {'key1':1.0,3:False}
{}
types.EllipsisType immutable Anellipsisplaceholder to be used as an index inNumPyarrays ...
Ellipsis
float immutable Double-precisionfloating-point number.The precision is machine-dependent but in practice is generally implemented as a 64-bitIEEE 754number with 53 bits of precision.[118]

1.33333

frozenset immutable Unorderedset,contains no duplicates; can contain mixed types, if hashable frozenset([4.0,'string',True])
int immutable Integerof unlimited magnitude[119] 42
list mutable List,can contain mixed types [4.0,'string',True]
[]
types.NoneType immutable An object representing the absence of a value, often callednullin other languages None
types.NotImplementedType immutable A placeholder that can be returned fromoverloaded operatorsto indicate unsupported operand types. NotImplemented
range immutable Animmutable sequenceof numbers commonly used for looping a specific number of times inforloops[120] range(-1,10)
range(10,-5,-2)
set mutable Unorderedset,contains no duplicates; can contain mixed types, if hashable {4.0,'string',True}
set()
str immutable Acharacter string:sequence of Unicode codepoints 'Wikipedia'
"Wikipedia"
"""Spanning
multiple
lines "" "
Spanning
multiple
lines
tuple immutable Can contain mixed types (4.0,'string',True)
('single element',)
()

Arithmetic operations[edit]

Python has the usual symbols for arithmetic operators (+,-,*,/), the floor division operator//and themodulo operation%(where the remainder can be negative, e.g.4 % -3 == -2). It also has**forexponentiation,e.g.5**3 == 125and9**0.5 == 3.0,and a matrix‑multiplication operator@.[121]These operators work like in traditional math; with the sameprecedence rules,the operatorsinfix(+and-can also beunaryto represent positive and negative numbers respectively).

The division between integers produces floating-point results. The behavior of division has changed significantly over time:[122]

  • Current Python (i.e. since 3.0) changed/to always be floating-point division, e.g.5/2==2.5.
  • The floor division//operator was introduced. So7//3 == 2,-7//3 == -3,7.5//3 == 2.0and-7.5//3 == -3.0.Addingfrom__future__importdivisioncauses a module used in Python 2.7 to use Python 3.0 rules for division (see above).

In Python terms,/istrue division(or simplydivision), and//isfloor division./before version 3.0 isclassic division.[122]

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

Python provides aroundfunction forroundinga float to the nearest integer. Fortie-breaking,Python 3 usesround to even:round(1.5)andround(2.5)both produce2.[124]Versions before 3 usedround-away-from-zero:round(0.5)is1.0,round(-0.5)is−1.0.[125]

Python allows Boolean expressions with multiple equality relations in a manner that is consistent with general use in mathematics. For example, the expressiona < b < ctests whetherais less thanbandbis less thanc.[126]C-derived languages interpret this expression differently: in C, the expression would first evaluatea < b,resulting in 0 or 1, and that result would then be compared withc.[127]

Python usesarbitrary-precision arithmeticfor all integer operations. TheDecimaltype/class in thedecimalmodule providesdecimal floating-point numbersto a pre-defined arbitrary precision and several rounding modes.[128]TheFractionclass in thefractionsmodule provides arbitrary precision forrational numbers.[129]

Due to Python's extensive mathematics library, and the third-party libraryNumPythat 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.[130][131]

Programming examples[edit]

"Hello, World!" program:

print('Hello, world!')

Program to calculate thefactorialof a positive integer:

n=int(input('Type a number, and its factorial will be printed: '))

ifn<0:
raiseValueError('You must enter a non-negative integer')

factorial=1
foriinrange(2,n+1):
factorial*=i

print(factorial)

Libraries[edit]

Python's large standard library[132]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 asMIMEandHTTPare supported. It includes modules for creatinggraphical user interfaces,connecting torelational databases,generating pseudorandom numbers,arithmetic with arbitrary-precision decimals,[128]manipulatingregular expressions,andunit testing.

Some parts of the standard library are covered by specifications—for example, theWeb Server Gateway Interface(WSGI) implementationwsgireffollows PEP 333[133]—but most are specified by their code, internal documentation, andtest 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,thePython Package Index(PyPI), the official repository for third-party Python software, contains over 523,000[134]packages with a wide range of functionality, including:

Development environments[edit]

Most Python implementations (including CPython) include aread–eval–print loop(REPL), permitting them to function as acommand line interpreterfor which users enter statements sequentially and receive results immediately.

Python also comes with anIntegrated development environment (IDE)calledIDLE,which is more beginner-oriented.

Other shells, includingIDLEandIPython,add further abilities such as improved auto-completion, session state retention, andsyntax highlighting.

As well as standard desktopintegrated development environmentsincluding PyCharm, IntelliJ Idea, Visual Studio Code etc, there areweb browser-based IDEs, includingSageMath,for developing science- and math-related programs;PythonAnywhere,a browser-based IDE and hosting environment; and Canopy IDE, a commercial IDE emphasizingscientific computing.[135]

Implementations[edit]

Reference implementation[edit]

CPythonis thereference implementationof Python. It is written in C, meeting theC89standard (Python 3.11 usesC11[136]) with several selectC99features. CPython includes its own C extensions, but third-party extensions are not limited to older C versions—e.g. they can be implemented withC11or C++.[137][138]CPythoncompilesPython programs into an intermediatebytecode[139]which is then executed by itsvirtual machine.[140]CPython is distributed with a large standard library written in a mixture of C and native Python, and is available for many platforms, including Windows (starting with Python 3.9, the Python installer deliberately fails to install onWindows 7and 8;[141][142]Windows XPwas supported until Python 3.5) and most modernUnix-likesystems, including macOS (andApple M1Macs, since Python 3.9.1, with experimental installer), with unofficial support forVMS.[143]Platform portability was one of its earliest priorities.[144](During Python 1 and 2 development, evenOS/2andSolariswere supported,[145]but support has since been dropped for many platforms.)

Python, since 3.7, only supports operating systems with multi-threading support.

Other implementations[edit]

  • PyPyis a fast, compliant interpreter of Python 2.7 and 3.8.[146][147]Itsjust-in-time compileroften brings a significant speed improvement over CPython, but some libraries written in C cannot be used with it.[148]
  • Stackless Pythonis a significant fork of CPython that implementsmicrothreads;it does not use thecall stackin the same way, thus allowing massively concurrent programs. PyPy also has a stackless version.[149]
  • MicroPythonandCircuitPythonare Python 3 variants optimized formicrocontrollers,includingLego Mindstorms EV3.[150]
  • Pyston is a variant of the Python runtime that uses just-in-time compilation to speed up the execution of Python programs.[151]
  • Cinder is a performance-oriented fork of CPython 3.8 that contains a number of optimizations, including bytecode inline caching, eager evaluation of coroutines, a method-at-a-timeJIT,and an experimental bytecode compiler.[152]
  • Snek[153][154][155]Embedded Computing Language (compatible with e.g. 8-bitAVR microcontrollerssuch asATmega 328P-based Arduino, as well as larger ones compatible withMicroPython) "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."[156]It is an imperative language not includingOOP/ classes, unlike Python, and simplifying to one number type with 32-bitsingle-precision(similar toJavaScript,except smaller).

Unsupported implementations[edit]

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

  • Google began a project namedUnladen Swallowin 2009, with the aim of speeding up the Python interpreter five-fold by using theLLVM,and of improving itsmultithreadingability to scale to thousands of cores,[157]while ordinary implementations suffer from theglobal interpreter lock.
  • Psycois a discontinuedjust-in-timespecializingcompiler that integrates with CPython and transforms bytecode to machine code at runtime. The emitted code is specialized for certaindata typesand is faster than the standard Python code. Psyco does not support Python 2.7 or later.
  • PyS60was a Python 2 interpreter forSeries 60mobile phones released byNokiain 2005. It implemented many of the modules from the standard library and some additional modules for integrating with theSymbianoperating system. The NokiaN900also supports Python withGTKwidget libraries, enabling programs to be written and run on the target device.[158]

Cross-compilers to other languages[edit]

There are several compilers/transpilersto high-level object languages, with either unrestricted Python, a restricted subset of Python, or a language similar to Python as the source language:

  • Brython,[159]Transcrypt[160][161]andPyjs(latest release in 2012) compile Python toJavaScript.
  • Codoncompiles a subset of statically typed Python[162]to machine code (viaLLVM) and supports native multithreading.[163]
  • Cythoncompiles (a superset of) Python to C. The resulting code is also usable 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".[88]Despite claiming high performance, no tool can claim to do that forarbitraryPython code; i.e. it's known not possible to compile to a faster language or machine code. Unless semantics of Python are 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, and based that way.
  • Nuitkacompiles Python into C.[164]
  • Numbauses LLVM to compile a subset of Python to machine code.
  • Pythran compiles a subset of Python 3 to C++ (C++11).[165]
  • RPythoncan be compiled to C, and is used to build the PyPy interpreter of Python.
  • The Python → 11l → C++ transpiler[166]compiles a subset of Python 3 to C++ (C++17).

Specialized:

Older projects (or not to be used with Python 3.x and latest syntax):

  • Google's Grumpy (latest release in 2017)transpilesPython 2 toGo.[167][168][169]
  • IronPythonallows running Python 2.7 programs (and analpha,released in 2021, is also available for "Python 3.4, although features and behaviors from later versions may be included"[170]) on the.NETCommon Language Runtime.[171]
  • Jythoncompiles Python 2.7 to Java bytecode, allowing the use of the Java libraries from a Python program.[172]
  • Pyrex(latest release in 2010) andShed Skin(latest release in 2013) compile to C and C++ respectively.

Performance[edit]

Performance comparison of various Python implementations on a non-numerical (combinatorial) workload was presented at EuroSciPy '13.[173]Python's performance compared to other programming languages is also benchmarked byThe Computer Language Benchmarks Game.[174]

Development[edit]

Python's development is conducted largely through thePython Enhancement Proposal(PEP) process, the primary mechanism for proposing major new features, collecting community input on issues, and documenting Python design decisions.[175]Python coding style is covered in PEP 8.[176]Outstanding PEPs are reviewed and commented on by the Python community and the steering council.[175]

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 theRoundupbug trackerhosted at by the foundation.[177]In 2022, all issues and discussions were migrated toGitHub.[178]Development originally took place on aself-hostedsource-code repository runningMercurial,until Python moved toGitHubin January 2017.[179]

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

  • Backward-incompatible versions, where code is expected to break and needs to be manuallyported.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 is very unlikely to ever happen.[180]
  • 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 happen annually.[181][182]Each major version is supported by bug fixes for several years after its release.[183]
  • Bugfix releases,[184]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.[184]

Manyalpha, beta, and release-candidatesare 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 largeunit testsuite during development.[185]

The majoracademic conferenceon Python isPyCon.There are also special Python mentoring programs, such asPyLadies.

Python 3.12 removedwstrmeaning Python extensions[186]need to be modified,[187]and 3.10 addedpattern matchingto the language.[188]

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 emitDeprecationWarningsince 3.13 and will be removed in Python 3.16. The 'w' format code should be used instead. Part of ctypes is also deprecated andhttp.server.CGIHTTPRequestHandlerwill 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 atyping.NamedTupleclass using keyword arguments to denote the fields and such (and more) will be disallowed in Python 3.15.

API documentation generators[edit]

Tools that can generate documentation for Python API includepydoc(available as part of the standard library),Sphinx,Pdocand its forks,DoxygenandGraphviz,among others.[189]

Naming[edit]

Python's name is derived from the British comedy groupMonty Python,whom Python creator Guido van Rossum enjoyed while developing the language. Monty Python references appear frequently in Python code and culture;[190]for example, themetasyntactic variablesoften used in Python literature arespamandeggsinstead of the traditionalfooandbar.[190][191]The official Python documentation also contains various references to Monty Python routines.[192][193]Users of Python are sometimes referred to as "Pythonistas".[194]

The prefixPy-is used to show that something is related to Python. Examples of the use of this prefix in names of Python applications or libraries includePygame,abindingofSDLto Python (commonly used to create games);PyQtandPyGTK,which bindQtand GTK to Python respectively; andPyPy,a Python implementation originally written in Python.

Popularity[edit]

Since 2003, Python has consistently ranked in the top ten most popular programming languages in theTIOBE Programming Community Indexwhere as of December 2022it was the most popular language (ahead of C, C++, andJava).[40]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[195]).

Large organizations that use Python includeWikipedia,Google,[196]Yahoo!,[197]CERN,[198]NASA,[199]Facebook,[200]Amazon,Instagram,[201]Spotify,[202]and some smaller entities likeILM[203]andITA.[204]The social news networking siteRedditwas written mostly in Python.[205]

Uses[edit]

Python Powered

Python can serve as ascripting languageforweb applications,e.g. viamod_wsgifor theApache webserver.[206]WithWeb Server Gateway Interface,a standard API has evolved to facilitate these applications.Web frameworkslikeDjango,Pylons,Pyramid,TurboGears,web2py,Tornado,Flask,Bottle, andZopesupport developers in the design and maintenance of complex applications. Pyjs andIronPythoncan be used to develop the client-side of Ajax-based applications.SQLAlchemycan be used as adata mapperto a relational database.Twistedis a framework to program communications between computers, and is used (for example) byDropbox.

Libraries such asNumPy,SciPyandMatplotliballow the effective use of Python in scientific computing,[207][208]with specialized libraries such asBiopythonandAstropyproviding domain-specific functionality.SageMathis acomputer algebra systemwith anotebook interfaceprogrammable in Python: its library covers many aspects ofmathematics,includingalgebra,combinatorics,numerical mathematics,number theory,andcalculus.[209]OpenCVhas Python bindings with a rich set of features forcomputer visionandimage processing.[210]

Python is commonly used inartificial intelligenceprojects and machine learning projects with the help of libraries likeTensorFlow,Keras,Pytorch,scikit-learnand the Logic languageProbLog.[211][212][213][214][215]As a scripting language with amodular architecture,simple syntax, and rich text processing tools, Python is often used fornatural language processing.[216]

The combination of Python andProloghas proved to be particularly useful for AI applications, with Prolog providing knowledge representation and reasoning capablities. The Janus system, in particular, exploits the similarites 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.[217][218] The Natlog system, implemented in Python, usesDefinite Clause Grammars(DCGs) as prompt generators for text-to-text generators like GPT3 and text-to-image generators like DALL-E or Stable Diffusion.[219]

Python can also be used forgraphical user interface(GUI) by using libraries likeTkinter.[220][221]

Python has been successfully embedded in many software products as a scripting language, including infinite element methodsoftware such asAbaqus,3D parametric modelers likeFreeCAD,3D animation packages such as3ds Max,Blender,Cinema 4D,Lightwave,Houdini,Maya,modo,MotionBuilder,Softimage,the visual effects compositorNuke,2D imaging programs likeGIMP,[222]Inkscape,ScribusandPaint Shop Pro,[223]andmusical notationprograms likescorewriterandcapella.GNU Debuggeruses Python as apretty printerto show complex structures such as C++ containers.Esripromotes Python as the best choice for writing scripts inArcGIS.[224]It has also been used in several video games,[225][226]and has been adopted as first of the three availableprogramming languagesinGoogle App Engine,the other two beingJavaandGo.[227]

Many operating systems include Python as a standard component. It ships with mostLinux distributions,[228]AmigaOS 4(using Python 2.7),FreeBSD(as a package),NetBSD,andOpenBSD(as a package) and can be used from the command line (terminal). Many Linux distributions use installers written in Python:Ubuntuuses theUbiquityinstaller, whileRed Hat LinuxandFedora Linuxuse theAnacondainstaller.Gentoo Linuxuses Python in itspackage management system,Portage.

Python is used extensively in theinformation securityindustry, including in exploit development.[229][230]

Most of theSugarsoftware for theOne Laptop per ChildXO, developed atSugar Labsas of 2008,is written in Python.[231]TheRaspberry Pisingle-board computerproject has adopted Python as its main user-programming language.

LibreOfficeincludes Python and intends to replace Java with Python. Its Python Scripting Provider is a core feature[232]since Version 4.0 from 7 February 2013.

Languages influenced by Python[edit]

Python's design and philosophy have influenced many other programming languages:

  • Boouses indentation, a similar syntax, and a similar object model.[233]
  • Cobrauses indentation and a similar syntax, and itsAcknowledgementsdocument lists Python first among languages that influenced it.[234]
  • CoffeeScript,a programming language that cross-compiles to JavaScript, has Python-inspired syntax.
  • ECMAScriptJavaScriptborrowed iterators andgeneratorsfrom Python.[235]
  • GDScript,a scripting language very similar to Python, built-in to theGodotgame engine.[236]
  • Gois designed for the "speed of working in a dynamic language like Python"[237]and shares the same syntax for slicing arrays.
  • Groovywas motivated by the desire to bring the Python design philosophy toJava.[238]
  • Juliawas designed to be "as usable for general programming as Python".[28]
  • Mojois a non-strict[29][239]superset of Python (e.g. still missing classes, and adding e.g.struct).[240]
  • Nimuses indentation and similar syntax.[241]
  • 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."[242]
  • Swift,a programming language developed by Apple, has some Python-inspired syntax.[243]
  • Kotlinblends Python and Java features, minimizing boilerplate code for enhanced developer efficiency.[244]

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 inTcl,[245]Erlang,[246]and Swift.[247]

See also[edit]

References[edit]

  1. ^"General Python FAQ – Python 3.9.2 documentation".docs.python.org.Archivedfrom the original on 24 October 2012.Retrieved28 March2021.
  2. ^"Python 0.9.1 part 01/21".alt.sources archives.Archivedfrom the original on 11 August 2021.Retrieved11 August2021.
  3. ^"Why is Python a dynamic language and also a strongly typed language".Python Wiki.Archivedfrom the original on 14 March 2021.Retrieved27 January2021.
  4. ^ab"PEP 483 – The Theory of Type Hints".Python.org.Archivedfrom the original on 14 June 2020.Retrieved14 June2018.
  5. ^"PEP 11 – CPython platform support | peps.python.org".Python Enhancement Proposals (PEPs).Retrieved22 April2024.
  6. ^"PEP 738 – Adding Android as a supported platform | peps.python.org".Python Enhancement Proposals (PEPs).Retrieved19 May2024.
  7. ^"Download Python for Other Platforms".Python.org.Archivedfrom the original on 27 November 2020.Retrieved18 August2023.
  8. ^"test – Regression tests package for Python – Python 3.7.13 documentation".docs.python.org.Archivedfrom the original on 17 May 2022.Retrieved17 May2022.
  9. ^"platform – Access to underlying platform's identifying data – Python 3.10.4 documentation".docs.python.org.Archivedfrom the original on 17 May 2022.Retrieved17 May2022.
  10. ^Holth, Moore (30 March 2014)."PEP 0441 – Improving Python ZIP Application Support".Archivedfrom the original on 26 December 2018.Retrieved12 November2015.
  11. ^"Starlark Language".Archivedfrom the original on 15 June 2020.Retrieved25 May2019.
  12. ^ab"Why was Python created in the first place?".General Python FAQ.Python Software Foundation.Archivedfrom the original on 24 October 2012.Retrieved22 March2007.I had extensive experience with implementing an interpreted language in the ABC group at CWI, and from working with this group I had learned a lot about language design. This is the origin of many Python features, including the use of indentation for statement grouping and the inclusion of very high-level data types (although the details are all different in Python).
  13. ^"Ada 83 Reference Manual (raise statement)".Archivedfrom the original on 22 October 2019.Retrieved7 January2020.
  14. ^abKuchling, Andrew M. (22 December 2006)."Interview with Guido van Rossum (July 1998)".amk.ca.Archived fromthe originalon 1 May 2007.Retrieved12 March2012.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. ^abc"itertools – Functions creating iterators for efficient looping – Python 3.7.1 documentation".docs.python.org.Archivedfrom the original on 14 June 2020.Retrieved22 November2016.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).CiteSeerX10.1.1.38.2023.even though the design of C is far from ideal, its influence on Python is considerable.
  17. ^ab"Classes".The Python Tutorial.Python Software Foundation.Archivedfrom the original on 23 October 2012.Retrieved20 February2012.It is a mixture of the class mechanisms found in C++ and Modula-3
  18. ^Lundh, Fredrik."Call By Object".effbot.org.Archivedfrom the original on 23 November 2019.Retrieved21 November2017.replace "CLU" with "Python", "record" with "instance", and "procedure" with "function or method", and you get a pretty accurate description of Python's object model.
  19. ^Simionato, Michele."The Python 2.3 Method Resolution Order".Python Software Foundation.Archivedfrom the original on 20 August 2020.Retrieved29 July2014.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
  20. ^Kuchling, A. M."Functional Programming HOWTO".Python v2.7.2 documentation.Python Software Foundation.Archivedfrom the original on 24 October 2012.Retrieved9 February2012.List comprehensions and generator expressions [...] are a concise notation for such operations, borrowed from the functional programming language Haskell.
  21. ^Schemenauer, Neil; Peters, Tim; Hetland, Magnus Lie (18 May 2001)."PEP 255 – Simple Generators".Python Enhancement Proposals.Python Software Foundation.Archivedfrom the original on 5 June 2020.Retrieved9 February2012.
  22. ^"More Control Flow Tools".Python 3 documentation.Python Software Foundation.Archivedfrom the original on 4 June 2016.Retrieved24 July2015.By popular demand, a few features commonly found in functional programming languages like Lisp have been added to Python. With the lambda keyword, small anonymous functions can be created.
  23. ^"re – Regular expression operations – Python 3.10.6 documentation".docs.python.org.Archivedfrom the original on 18 July 2018.Retrieved6 September2022.This module provides regular expression matching operations similar to those found in Perl.
  24. ^"CoffeeScript".coffeescript.org.Archivedfrom the original on 12 June 2020.Retrieved3 July2018.
  25. ^"The Genie Programming Language Tutorial".Archivedfrom the original on 1 June 2020.Retrieved28 February2020.
  26. ^"Perl and Python influences in JavaScript".www.2ality.com.24 February 2013.Archivedfrom the original on 26 December 2018.Retrieved15 May2015.
  27. ^Rauschmayer, Axel."Chapter 3: The Nature of JavaScript; Influences".O'Reilly, Speaking JavaScript.Archivedfrom the original on 26 December 2018.Retrieved15 May2015.
  28. ^ab"Why We Created Julia".Julia website.February 2012.Archivedfrom the original on 2 May 2020.Retrieved5 June2014.We want something as usable for general programming as Python [...]
  29. ^abKrill, Paul (4 May 2023)."Mojo language marries Python and MLIR for AI development".InfoWorld.Archivedfrom the original on 5 May 2023.Retrieved5 May2023.
  30. ^Ring Team (4 December 2017)."Ring and other languages".ring-lang.net.ring-lang.Archivedfrom the original on 25 December 2018.Retrieved4 December2017.
  31. ^Bini, Ola (2007).Practical JRuby on Rails Web 2.0 Projects: bringing Ruby on Rails to the Java platform.Berkeley: APress. p.3.ISBN978-1-59059-881-8.
  32. ^Lattner, Chris (3 June 2014)."Chris Lattner's Homepage".Chris Lattner.Archivedfrom the original on 25 December 2018.Retrieved3 June2014.The Swift language is the product of tireless effort from a team of language experts, documentation gurus, compiler optimization ninjas, and an incredibly important internal dogfooding group who provided feedback to help refine and battle-test ideas. Of course, it also greatly benefited from the experiences hard-won by many other languages in the field, drawing ideas from Objective-C, Rust, Haskell, Ruby, Python, C#, CLU, and far too many others to list.
  33. ^Kuhlman, Dave."A Python Book: Beginning Python, Advanced Python, and Python Exercises".Section 1.1. Archived fromthe original(PDF)on 23 June 2012.
  34. ^"About Python".Python Software Foundation.Archivedfrom the original on 20 April 2012.Retrieved24 April2012.,second section "Fans of Python use the phrase" batteries included "to describe the standard library, which covers everything from asynchronous processing to zip files."
  35. ^"PEP 206 – Python Advanced Library".Python.org.Archivedfrom the original on 5 May 2021.Retrieved11 October2021.
  36. ^Rossum, Guido Van (20 January 2009)."The History of Python: A Brief Timeline of Python".The History of Python.Archivedfrom the original on 5 June 2020.Retrieved5 March2021.
  37. ^Peterson, Benjamin (20 April 2020)."Python 2.7.18, the last release of Python 2".Python Insider.Archivedfrom the original on 26 April 2020.Retrieved27 April2020.
  38. ^"Stack Overflow Developer Survey 2022".Stack Overflow.Archivedfrom the original on 27 June 2022.Retrieved12 August2022.
  39. ^"The State of Developer Ecosystem in 2020 Infographic".JetBrains: Developer Tools for Professionals and Teams.Archivedfrom the original on 1 March 2021.Retrieved5 March2021.
  40. ^ab"TIOBE Index".TIOBE.Archivedfrom the original on 25 February 2018.Retrieved3 January2023.The TIOBE Programming Community index is an indicator of the popularity of programming languagesUpdated as required.
  41. ^"PYPL PopularitY of Programming Language index".pypl.github.io.Archivedfrom the original on 14 March 2017.Retrieved26 March2021.
  42. ^abVenners, Bill (13 January 2003)."The Making of Python".Artima Developer.Artima.Archivedfrom the original on 1 September 2016.Retrieved22 March2007.
  43. ^van Rossum, Guido(29 August 2000)."SETL (was: Lukewarm about range literals)".Python-Dev(Mailing list).Archivedfrom the original on 14 July 2018.Retrieved13 March2011.
  44. ^van Rossum, Guido (20 January 2009)."A Brief Timeline of Python".The History of Python.Archivedfrom the original on 5 June 2020.Retrieved20 January2009.
  45. ^Fairchild, Carlie (12 July 2018)."Guido van Rossum Stepping Down from Role as Python's Benevolent Dictator For Life".Linux Journal.Archivedfrom the original on 13 July 2018.Retrieved13 July2018.
  46. ^"PEP 8100".Python Software Foundation.Archivedfrom the original on 4 June 2020.Retrieved4 May2019.
  47. ^"PEP 13 – Python Language Governance".Python.org.Archivedfrom the original on 27 May 2021.Retrieved25 August2021.
  48. ^Kuchling, A. M.; Zadka, Moshe (16 October 2000)."What's New in Python 2.0".Python Software Foundation.Archivedfrom the original on 23 October 2012.Retrieved11 February2012.
  49. ^van Rossum, Guido (5 April 2006)."PEP 3000 – Python 3000".Python Enhancement Proposals.Python Software Foundation. Archived fromthe originalon 3 March 2016.Retrieved27 June2009.
  50. ^"2to3 – Automated Python 2 to 3 code translation".docs.python.org.Archivedfrom the original on 4 June 2020.Retrieved2 February2021.
  51. ^"PEP 373 – Python 2.7 Release Schedule".python.org.Archivedfrom the original on 19 May 2020.Retrieved9 January2017.
  52. ^"PEP 466 – Network Security Enhancements for Python 2.7.x".python.org.Archivedfrom the original on 4 June 2020.Retrieved9 January2017.
  53. ^"Sunsetting Python 2".Python.org.Archivedfrom the original on 12 January 2020.Retrieved22 September2019.
  54. ^"PEP 373 – Python 2.7 Release Schedule".Python.org.Archivedfrom the original on 13 January 2020.Retrieved22 September2019.
  55. ^"Python Release Python 3.7.17".Python.org.Archivedfrom the original on 31 July 2023.Retrieved18 August2023.
  56. ^mattip (25 December 2023)."PyPy v7.3.14 release".PyPy.Archivedfrom the original on 5 January 2024.Retrieved5 January2024.
  57. ^"CVE-2021-3177".Red Hat Customer Portal.Archivedfrom the original on 6 March 2021.Retrieved26 February2021.
  58. ^"CVE-2021-3177".CVE.Archivedfrom the original on 27 February 2021.Retrieved26 February2021.
  59. ^"CVE-2021-23336".CVE.Archivedfrom the original on 24 February 2021.Retrieved26 February2021.
  60. ^Langa, Łukasz (24 March 2022)."Python 3.10.4 and 3.9.12 are now available out of schedule".Python Insider.Archivedfrom the original on 21 April 2022.Retrieved19 April2022.
  61. ^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".Python Insider.Archivedfrom the original on 17 April 2022.Retrieved19 April2022.
  62. ^Langa, Łukasz (17 May 2022)."Python 3.9.13 is now available".Python Insider.Archivedfrom the original on 17 May 2022.Retrieved21 May2022.
  63. ^Langa, Łukasz (7 September 2022)."Python releases 3.10.7, 3.9.14, 3.8.14, and 3.7.14 are now available".Python Insider.Archivedfrom the original on 13 September 2022.Retrieved16 September2022.
  64. ^"CVE-2020-10735".CVE.Archivedfrom the original on 20 September 2022.Retrieved16 September2022.
  65. ^corbet (24 October 2022)."Python 3.11 released [LWN.net]".lwn.net.Retrieved15 November2022.
  66. ^https://docs.python.org/3/library/stdtypes.html#types-union
  67. ^"Python".endoflife.date.10 August 2023.Archivedfrom the original on 18 September 2021.Retrieved15 August2023.
  68. ^"What's New In Python 3.13".Python documentation.Retrieved30 April2024.
  69. ^Wouters, Thomas (9 April 2024)."Python Insider: Python 3.12.3 and 3.13.0a6 released".Python Insider.Retrieved29 April2024.
  70. ^https://peps.python.org/pep-0594/
  71. ^The Cain Gang Ltd."Python Metaclasses: Who? Why? When?"(PDF).Archived fromthe original(PDF)on 30 May 2009.Retrieved27 June2009.
  72. ^"3.3. Special method names".The Python Language Reference.Python Software Foundation.Archivedfrom the original on 15 December 2018.Retrieved27 June2009.
  73. ^"PyDBC: method preconditions, method postconditions and class invariants for Python".Archivedfrom the original on 23 November 2019.Retrieved24 September2011.
  74. ^"Contracts for Python".Archivedfrom the original on 15 June 2020.Retrieved24 September2011.
  75. ^"PyDatalog".Archivedfrom the original on 13 June 2020.Retrieved22 July2012.
  76. ^"Extending and Embedding the Python Interpreter: Reference Counts".Docs.python.org.Archivedfrom the original on 18 October 2012.Retrieved5 June2020.Since Python makes heavy use ofmalloc()andfree(),it needs a strategy to avoid memory leaks as well as the use of freed memory. The chosen method is calledreference counting.
  77. ^abHettinger, Raymond (30 January 2002)."PEP 289 – Generator Expressions".Python Enhancement Proposals.Python Software Foundation.Archivedfrom the original on 14 June 2020.Retrieved19 February2012.
  78. ^"6.5 itertools – Functions creating iterators for efficient looping".Docs.python.org.Archivedfrom the original on 14 June 2020.Retrieved22 November2016.
  79. ^abPeters, Tim (19 August 2004)."PEP 20 – The Zen of Python".Python Enhancement Proposals.Python Software Foundation.Archivedfrom the original on 26 December 2018.Retrieved24 November2008.
  80. ^Lutz, Mark (January 2022)."Python Changes 2014+".Learning Python.Archivedfrom the original on 15 March 2024.Retrieved25 February2024.
  81. ^Thomas, Robin (3 May 2023)."Python is not a great programming language".GitHub Gist.Archivedfrom the original on 31 December 2023.Retrieved25 February2024.
  82. ^"Confusion regarding a rule in The Zen of Python".Python Help - Discussions on Python.org.3 May 2022.Archivedfrom the original on 25 February 2024.Retrieved25 February2024.
  83. ^Ambi, Chetan (4 July 2021)."The Most Controversial Python Walrus Operator".Python Simplified.Archivedfrom the original on 27 August 2023.Retrieved5 February2024.
  84. ^Grifski, Jeremy (24 May 2020)."The Controversy Behind The Walrus Operator in Python".The Renegade Coder.Archivedfrom the original on 28 December 2023.Retrieved25 February2024.
  85. ^Bader, Dan."Python String Formatting Best Practices".Real Python.Archivedfrom the original on 18 February 2024.Retrieved25 February2024.
  86. ^Martelli, Alex; Ravenscroft, Anna; Ascher, David (2005).Python Cookbook, 2nd Edition.O'Reilly Media.p. 230.ISBN978-0-596-00797-3.Archivedfrom the original on 23 February 2020.Retrieved14 November2015.
  87. ^"Python Culture".ebeab.21 January 2014. Archived fromthe originalon 30 January 2014.
  88. ^ab"Transpiling Python to Julia using PyJL"(PDF).Archived(PDF)from the original on 19 November 2023.Retrieved20 September2023.After manually modifying one line of code by specifying the necessary type information, we obtained a speedup of 52.6×, making the translated Julia code 19.5× faster than the original Python code.
  89. ^"Why is it called Python?".General Python FAQ.Docs.python.org.Archivedfrom the original on 24 October 2012.Retrieved3 January2023.
  90. ^"15 Ways Python Is a Powerful Force on the Web".Archived fromthe originalon 11 May 2019.Retrieved3 July2018.
  91. ^"pprint – Data pretty printer – Python 3.11.0 documentation".docs.python.org.Archivedfrom the original on 22 January 2021.Retrieved5 November2022.stuff=['spam', 'eggs', 'lumberjack', 'knights', 'ni']
  92. ^"Code Style – The Hitchhiker's Guide to Python".docs.python-guide.org.Archivedfrom the original on 27 January 2021.Retrieved20 January2021.
  93. ^"Is Python a good language for beginning programmers?".General Python FAQ.Python Software Foundation.Archivedfrom the original on 24 October 2012.Retrieved21 March2007.
  94. ^"Myths about indentation in Python".Secnetix.de. Archived fromthe originalon 18 February 2018.Retrieved19 April2011.
  95. ^Guttag, John V. (12 August 2016).Introduction to Computation and Programming Using Python: With Application to Understanding Data.MIT Press.ISBN978-0-262-52962-4.
  96. ^"PEP 8 – Style Guide for Python Code".Python.org.Archivedfrom the original on 17 April 2019.Retrieved26 March2019.
  97. ^"8. Errors and Exceptions – Python 3.12.0a0 documentation".docs.python.org.Archivedfrom the original on 9 May 2022.Retrieved9 May2022.
  98. ^"Highlights: Python 2.5".Python.org.Archivedfrom the original on 4 August 2019.Retrieved20 March2018.
  99. ^van Rossum, Guido (22 April 2009)."Tail Recursion Elimination".Neopythonic.blogspot.be.Archivedfrom the original on 19 May 2018.Retrieved3 December2012.
  100. ^van Rossum, Guido (9 February 2006)."Language Design Is Not Just Solving Puzzles".Artima forums.Artima.Archivedfrom the original on 17 January 2020.Retrieved21 March2007.
  101. ^van Rossum, Guido; Eby, Phillip J. (10 May 2005)."PEP 342 – Coroutines via Enhanced Generators".Python Enhancement Proposals.Python Software Foundation.Archivedfrom the original on 29 May 2020.Retrieved19 February2012.
  102. ^"PEP 380".Python.org.Archivedfrom the original on 4 June 2020.Retrieved3 December2012.
  103. ^"division".python.org.Archivedfrom the original on 20 July 2006.Retrieved30 July2014.
  104. ^"PEP 0465 – A dedicated infix operator for matrix multiplication".python.org.Archivedfrom the original on 4 June 2020.Retrieved1 January2016.
  105. ^"Python 3.5.1 Release and Changelog".python.org.Archivedfrom the original on 14 May 2020.Retrieved1 January2016.
  106. ^"What's New in Python 3.8".Archivedfrom the original on 8 June 2020.Retrieved14 October2019.
  107. ^van Rossum, Guido; Hettinger, Raymond (7 February 2003)."PEP 308 – Conditional Expressions".Python Enhancement Proposals.Python Software Foundation.Archivedfrom the original on 13 March 2016.Retrieved13 July2011.
  108. ^"4. Built-in Types – Python 3.6.3rc1 documentation".python.org.Archivedfrom the original on 14 June 2020.Retrieved1 October2017.
  109. ^"5.3. Tuples and Sequences – Python 3.7.1rc2 documentation".python.org.Archivedfrom the original on 10 June 2020.Retrieved17 October2018.
  110. ^ab"PEP 498 – Literal String Interpolation".python.org.Archivedfrom the original on 15 June 2020.Retrieved8 March2017.
  111. ^"Why must 'self' be used explicitly in method definitions and calls?".Design and History FAQ.Python Software Foundation.Archivedfrom the original on 24 October 2012.Retrieved19 February2012.
  112. ^Sweigart, Al (2020).Beyond the Basic Stuff with Python: Best Practices for Writing Clean Code.No Starch Press. p. 322.ISBN978-1-59327-966-0.Archivedfrom the original on 13 August 2021.Retrieved7 July2021.
  113. ^"The Python Language Reference, section 3.3. New-style and classic classes, for release 2.7.1".Archived fromthe originalon 26 October 2012.Retrieved12 January2011.
  114. ^"PEP 484 – Type Hints | peps.python.org".peps.python.org.Archivedfrom the original on 27 November 2023.Retrieved29 November2023.
  115. ^"typing — Support for type hints".Python documentation.Python Software Foundation.Archivedfrom the original on 21 February 2020.Retrieved22 December2023.
  116. ^"mypy – Optional Static Typing for Python".Archivedfrom the original on 6 June 2020.Retrieved28 January2017.
  117. ^"Introduction".mypyc.readthedocs.io.Archivedfrom the original on 22 December 2023.Retrieved22 December2023.
  118. ^"15. Floating Point Arithmetic: Issues and Limitations – Python 3.8.3 documentation".docs.python.org.Archivedfrom the original on 6 June 2020.Retrieved6 June2020.Almost all machines today (November 2000) use IEEE-754 floating point arithmetic, and almost all platforms map Python floats to IEEE-754 "double precision".
  119. ^Zadka, Moshe; van Rossum, Guido (11 March 2001)."PEP 237 – Unifying Long Integers and Integers".Python Enhancement Proposals.Python Software Foundation.Archivedfrom the original on 28 May 2020.Retrieved24 September2011.
  120. ^"Built-in Types".Archivedfrom the original on 14 June 2020.Retrieved3 October2019.
  121. ^"PEP 465 – A dedicated infix operator for matrix multiplication".python.org.Archivedfrom the original on 29 May 2020.Retrieved3 July2018.
  122. ^abZadka, Moshe; van Rossum, Guido (11 March 2001)."PEP 238 – Changing the Division Operator".Python Enhancement Proposals.Python Software Foundation.Archivedfrom the original on 28 May 2020.Retrieved23 October2013.
  123. ^"Why Python's Integer Division Floors".24 August 2010.Archivedfrom the original on 5 June 2020.Retrieved25 August2010.
  124. ^"round",The Python standard library, release 3.2, §2: Built-in functions,archivedfrom the original on 25 October 2012,retrieved14 August2011
  125. ^"round",The Python standard library, release 2.7, §2: Built-in functions,archivedfrom the original on 27 October 2012,retrieved14 August2011
  126. ^Beazley, David M. (2009).Python Essential Reference(4th ed.). Addison-Wesley Professional. p.66.ISBN9780672329784.
  127. ^Kernighan, Brian W.; Ritchie, Dennis M. (1988).The C Programming Language(2nd ed.). p.206.
  128. ^abBatista, Facundo (17 October 2003)."PEP 327 – Decimal Data Type".Python Enhancement Proposals.Python Software Foundation.Archivedfrom the original on 4 June 2020.Retrieved24 November2008.
  129. ^"What's New in Python 2.6".Python v2.6.9 documentation.29 October 2013.Archivedfrom the original on 23 December 2019.Retrieved26 September2015.
  130. ^"10 Reasons Python Rocks for Research (And a Few Reasons it Doesn't) – Hoyt Koepke".University of Washington Department of Statistics.Archived fromthe originalon 31 May 2020.Retrieved3 February2019.
  131. ^Shell, Scott (17 June 2014)."An introduction to Python for scientific computing"(PDF).Archived(PDF)from the original on 4 February 2019.Retrieved3 February2019.
  132. ^Piotrowski, Przemyslaw (July 2006)."Build a Rapid Web Development Environment for Python Server Pages and Oracle".Oracle Technology Network.Oracle.Archivedfrom the original on 2 April 2019.Retrieved12 March2012.
  133. ^Eby, Phillip J. (7 December 2003)."PEP 333 – Python Web Server Gateway Interface v1.0".Python Enhancement Proposals.Python Software Foundation.Archivedfrom the original on 14 June 2020.Retrieved19 February2012.
  134. ^"PyPI".PyPI.17 March 2024.Archivedfrom the original on 17 March 2024.
  135. ^Enthought, Canopy."Canopy".www.enthought.com.Archived fromthe originalon 15 July 2017.Retrieved20 August2016.
  136. ^"PEP 7 – Style Guide for C Code | peps.python.org".peps.python.org.Archivedfrom the original on 24 April 2022.Retrieved28 April2022.
  137. ^"4. Building C and C++ Extensions – Python 3.9.2 documentation".docs.python.org.Archivedfrom the original on 3 March 2021.Retrieved1 March2021.
  138. ^van Rossum, Guido (5 June 2001)."PEP 7 – Style Guide for C Code".Python Enhancement Proposals.Python Software Foundation.Archivedfrom the original on 1 June 2020.Retrieved24 November2008.
  139. ^"CPython byte code".Docs.python.org.Archivedfrom the original on 5 June 2020.Retrieved16 February2016.
  140. ^"Python 2.5 internals"(PDF).Archived(PDF)from the original on 6 August 2012.Retrieved19 April2011.
  141. ^"Changelog – Python 3.9.0 documentation".docs.python.org.Archivedfrom the original on 7 February 2021.Retrieved8 February2021.
  142. ^"Download Python".Python.org.Archivedfrom the original on 8 December 2020.Retrieved13 December2020.
  143. ^"history [vmspython]".www.vmspython.org.Archivedfrom the original on 2 December 2020.Retrieved4 December2020.
  144. ^"An Interview with Guido van Rossum".Oreilly.com.Archivedfrom the original on 16 July 2014.Retrieved24 November2008.
  145. ^"Download Python for Other Platforms".Python.org.Archivedfrom the original on 27 November 2020.Retrieved4 December2020.
  146. ^"PyPy compatibility".Pypy.org.Archivedfrom the original on 6 June 2020.Retrieved3 December2012.
  147. ^Team, The PyPy (28 December 2019)."Download and Install".PyPy.Archivedfrom the original on 8 January 2022.Retrieved8 January2022.
  148. ^"speed comparison between CPython and Pypy".Speed.pypy.org.Archivedfrom the original on 10 May 2021.Retrieved3 December2012.
  149. ^"Application-level Stackless features – PyPy 2.0.2 documentation".Doc.pypy.org.Archivedfrom the original on 4 June 2020.Retrieved17 July2013.
  150. ^"Python-for-EV3".LEGO Education.Archivedfrom the original on 7 June 2020.Retrieved17 April2019.
  151. ^Yegulalp, Serdar (29 October 2020)."Pyston returns from the dead to speed Python".InfoWorld.Archivedfrom the original on 27 January 2021.Retrieved26 January2021.
  152. ^"cinder: Instagram's performance-oriented fork of CPython".GitHub.Archivedfrom the original on 4 May 2021.Retrieved4 May2021.
  153. ^Aroca, Rafael (7 August 2021)."Snek Lang: feels like Python on Arduinos".Yet Another Technology Blog.Archivedfrom the original on 5 January 2024.Retrieved4 January2024.
  154. ^Aufranc (CNXSoft), Jean-Luc (16 January 2020)."Snekboard Controls LEGO Power Functions with CircuitPython or Snek Programming Languages (Crowdfunding) - CNX Software".CNX Software - Embedded Systems News.Archivedfrom the original on 5 January 2024.Retrieved4 January2024.
  155. ^Kennedy (@mkennedy), Michael."Ready to find out if you're git famous?".pythonbytes.fm.Archivedfrom the original on 5 January 2024.Retrieved4 January2024.
  156. ^Packard, Keith (20 December 2022)."The Snek Programming Language: A Python-inspired Embedded Computing Language"(PDF).Archived(PDF)from the original on 4 January 2024.Retrieved4 January2024.
  157. ^"Plans for optimizing Python".Google Project Hosting.15 December 2009.Archivedfrom the original on 11 April 2016.Retrieved24 September2011.
  158. ^"Python on the Nokia N900".Stochastic Geometry.29 April 2010.Archivedfrom the original on 20 June 2019.Retrieved9 July2015.
  159. ^"Brython".brython.info.Archivedfrom the original on 3 August 2018.Retrieved21 January2021.
  160. ^"Transcrypt – Python in the browser".transcrypt.org.Archivedfrom the original on 19 August 2018.Retrieved22 December2020.
  161. ^"Transcrypt: Anatomy of a Python to JavaScript Compiler".InfoQ.Archivedfrom the original on 5 December 2020.Retrieved20 January2021.
  162. ^"Codon: Differences with Python".Archivedfrom the original on 25 May 2023.Retrieved28 August2023.
  163. ^Lawson, Loraine (14 March 2023)."MIT-Created Compiler Speeds up Python Code".The New Stack.Archivedfrom the original on 6 April 2023.Retrieved28 August2023.
  164. ^"Nuitka Home | Nuitka Home".nuitka.net.Archivedfrom the original on 30 May 2020.Retrieved18 August2017.
  165. ^Guelton, Serge; Brunet, Pierrick; Amini, Mehdi; Merlini, Adrien; Corbillon, Xavier; Raynaud, Alan (16 March 2015)."Pythran: enabling static optimization of scientific Python programs".Computational Science & Discovery.8(1). IOP Publishing: 014001.Bibcode:2015CS&D....8a4001G.doi:10.1088/1749-4680/8/1/014001.ISSN1749-4699.
  166. ^"The Python → 11l → C++ transpiler".Archivedfrom the original on 24 September 2022.Retrieved17 July2022.
  167. ^"google/grumpy".10 April 2020.Archivedfrom the original on 15 April 2020.Retrieved25 March2020– via GitHub.
  168. ^"Projects".opensource.google.Archivedfrom the original on 24 April 2020.Retrieved25 March2020.
  169. ^Francisco, Thomas Claburn in San."Google's Grumpy code makes Python Go".www.theregister.com.Archivedfrom the original on 7 March 2021.Retrieved20 January2021.
  170. ^"GitHub – IronLanguages/ironpython3: Implementation of Python 3.x for.NET Framework that is built on top of the Dynamic Language Runtime".GitHub.Archivedfrom the original on 28 September 2021.
  171. ^"IronPython.net /".ironpython.net.Archivedfrom the original on 17 April 2021.
  172. ^"Jython FAQ".www.jython.org.Archivedfrom the original on 22 April 2021.Retrieved22 April2021.
  173. ^Murri, Riccardo (2013).Performance of Python runtimes on a non-numeric scientific code.European Conference on Python in Science (EuroSciPy).arXiv:1404.6388.Bibcode:2014arXiv1404.6388M.
  174. ^"The Computer Language Benchmarks Game".Archivedfrom the original on 14 June 2020.Retrieved30 April2020.
  175. ^abWarsaw, Barry; Hylton, Jeremy; Goodger, David (13 June 2000)."PEP 1 – PEP Purpose and Guidelines".Python Enhancement Proposals.Python Software Foundation.Archivedfrom the original on 6 June 2020.Retrieved19 April2011.
  176. ^"PEP 8 – Style Guide for Python Code".Python.org.Archivedfrom the original on 17 April 2019.Retrieved26 March2019.
  177. ^Cannon, Brett."Guido, Some Guys, and a Mailing List: How Python is Developed".python.org.Python Software Foundation. Archived fromthe originalon 1 June 2009.Retrieved27 June2009.
  178. ^"Moving Python's bugs to GitHub [LWN.net]".Archivedfrom the original on 2 October 2022.Retrieved2 October2022.
  179. ^"Python Developer's Guide – Python Developer's Guide".devguide.python.org.Archivedfrom the original on 9 November 2020.Retrieved17 December2019.
  180. ^Hughes, Owen (24 May 2021)."Programming languages: Why Python 4.0 might never arrive, according to its creator".TechRepublic.Archivedfrom the original on 14 July 2022.Retrieved16 May2022.
  181. ^"PEP 602 – Annual Release Cycle for Python".Python.org.Archivedfrom the original on 14 June 2020.Retrieved6 November2019.
  182. ^"Changing the Python release cadence [LWN.net]".lwn.net.Archivedfrom the original on 6 November 2019.Retrieved6 November2019.
  183. ^Norwitz, Neal (8 April 2002)."[Python-Dev] Release Schedules (was Stability & change)".Archivedfrom the original on 15 December 2018.Retrieved27 June2009.
  184. ^abAahz; Baxter, Anthony (15 March 2001)."PEP 6 – Bug Fix Releases".Python Enhancement Proposals.Python Software Foundation.Archivedfrom the original on 5 June 2020.Retrieved27 June2009.
  185. ^"Python Buildbot".Python Developer's Guide.Python Software Foundation.Archivedfrom the original on 5 June 2020.Retrieved24 September2011.
  186. ^"1. Extending Python with C or C++ – Python 3.9.1 documentation".docs.python.org.Archivedfrom the original on 23 June 2020.Retrieved14 February2021.
  187. ^"PEP 623 – Remove wstr from Unicode".Python.org.Archivedfrom the original on 5 March 2021.Retrieved14 February2021.
  188. ^"PEP 634 – Structural Pattern Matching: Specification".Python.org.Archivedfrom the original on 6 May 2021.Retrieved14 February2021.
  189. ^"Documentation Tools".Python.org.Archivedfrom the original on 11 November 2020.Retrieved22 March2021.
  190. ^ab"Whetting Your Appetite".The Python Tutorial.Python Software Foundation.Archivedfrom the original on 26 October 2012.Retrieved20 February2012.
  191. ^"In Python, should I use else after a return in an if block?".Stack Overflow.Stack Exchange. 17 February 2011.Archivedfrom the original on 20 June 2019.Retrieved6 May2011.
  192. ^Lutz, Mark (2009).Learning Python: Powerful Object-Oriented Programming.O'Reilly Media, Inc. p. 17.ISBN9781449379322.Archivedfrom the original on 17 July 2017.Retrieved9 May2017.
  193. ^Fehily, Chris (2002).Python.Peachpit Press. p. xv.ISBN9780201748840.Archivedfrom the original on 17 July 2017.Retrieved9 May2017.
  194. ^Lubanovic, Bill (2014).Introducing Python.Sebastopol, CA: O'Reilly Media. p. 305.ISBN978-1-4493-5936-2.Retrieved31 July2023.
  195. ^Blake, Troy (18 January 2021)."TIOBE Index for January 2021".Technology News and Information by SeniorDBA.Archivedfrom the original on 21 March 2021.Retrieved26 February2021.
  196. ^"Quotes about Python".Python Software Foundation.Archivedfrom the original on 3 June 2020.Retrieved8 January2012.
  197. ^"Organizations Using Python".Python Software Foundation.Archivedfrom the original on 21 August 2018.Retrieved15 January2009.
  198. ^"Python: the holy grail of programming".CERN Bulletin(31/2006). CERN Publications. 31 July 2006.Archivedfrom the original on 15 January 2013.Retrieved11 February2012.
  199. ^Shafer, Daniel G. (17 January 2003)."Python Streamlines Space Shuttle Mission Design".Python Software Foundation.Archivedfrom the original on 5 June 2020.Retrieved24 November2008.
  200. ^"Tornado: Facebook's Real-Time Web Framework for Python – Facebook for Developers".Facebook for Developers.Archivedfrom the original on 19 February 2019.Retrieved19 June2018.
  201. ^"What Powers Instagram: Hundreds of Instances, Dozens of Technologies".Instagram Engineering. 11 December 2016.Archivedfrom the original on 15 June 2020.Retrieved27 May2019.
  202. ^"How we use Python at Spotify".Spotify Labs.20 March 2013.Archivedfrom the original on 10 June 2020.Retrieved25 July2018.
  203. ^Fortenberry, Tim (17 January 2003)."Industrial Light & Magic Runs on Python".Python Software Foundation.Archivedfrom the original on 6 June 2020.Retrieved11 February2012.
  204. ^Taft, Darryl K. (5 March 2007)."Python Slithers into Systems".eWeek.com.Ziff Davis Holdings.Archivedfrom the original on 13 August 2021.Retrieved24 September2011.
  205. ^GitHub – reddit-archive/reddit: historical code from reddit.com.,The Reddit Archives,archivedfrom the original on 1 June 2020,retrieved20 March2019
  206. ^"Usage statistics and market share of Python for websites".2012.Archivedfrom the original on 13 August 2021.Retrieved18 December2012.
  207. ^Oliphant, Travis (2007)."Python for Scientific Computing".Computing in Science and Engineering.9(3): 10–20.Bibcode:2007CSE.....9c..10O.CiteSeerX10.1.1.474.6460.doi:10.1109/MCSE.2007.58.S2CID206457124.Archivedfrom the original on 15 June 2020.Retrieved10 April2015.
  208. ^Millman, K. Jarrod; Aivazis, Michael (2011)."Python for Scientists and Engineers".Computing in Science and Engineering.13(2): 9–12.Bibcode:2011CSE....13b...9M.doi:10.1109/MCSE.2011.36.Archivedfrom the original on 19 February 2019.Retrieved7 July2014.
  209. ^Science education with SageMath,Innovative Computing in Science Education, archived fromthe originalon 15 June 2020,retrieved22 April2019
  210. ^"OpenCV: OpenCV-Python Tutorials".docs.opencv.org.Archivedfrom the original on 23 September 2020.Retrieved14 September2020.
  211. ^Dean, Jeff;Monga, Rajat; et al. (9 November 2015)."TensorFlow: Large-scale machine learning on heterogeneous systems"(PDF).TensorFlow.org.Google Research.Archived(PDF)from the original on 20 November 2015.Retrieved10 November2015.
  212. ^Piatetsky, Gregory."Python eats away at R: Top Software for Analytics, Data Science, Machine Learning in 2018: Trends and Analysis".KDnuggets.Archivedfrom the original on 15 November 2019.Retrieved30 May2018.
  213. ^"Who is using scikit-learn? – scikit-learn 0.20.1 documentation".scikit-learn.org.Archivedfrom the original on 6 May 2020.Retrieved30 November2018.
  214. ^Jouppi, Norm."Google supercharges machine learning tasks with TPU custom chip".Google Cloud Platform Blog.Archivedfrom the original on 18 May 2016.Retrieved19 May2016.
  215. ^De Raedt, Luc; Kimmig, Angelika (2015)."Probabilistic (logic) programming concepts".Machine Learning.100(1): 5–47.doi:10.1007/s10994-015-5494-z.S2CID3166992.
  216. ^"Natural Language Toolkit – NLTK 3.5b1 documentation".www.nltk.org.Archivedfrom the original on 13 June 2020.Retrieved10 April2020.
  217. ^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.
  218. ^"SWI-Prolog Python interface".Archivedfrom the original on 15 March 2024.Retrieved15 March2024.
  219. ^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.
  220. ^"Tkinter — Python interface to TCL/Tk".Archivedfrom the original on 18 October 2012.Retrieved9 June2023.
  221. ^"Python Tkinter Tutorial".3 June 2020.Archivedfrom the original on 9 June 2023.Retrieved9 June2023.
  222. ^"Installers for GIMP for Windows – Frequently Asked Questions".26 July 2013. Archived fromthe originalon 17 July 2013.Retrieved26 July2013.
  223. ^"jasc psp9components".Archived fromthe originalon 19 March 2008.
  224. ^"About getting started with writing geoprocessing scripts".ArcGIS Desktop Help 9.2.Environmental Systems Research Institute. 17 November 2006.Archivedfrom the original on 5 June 2020.Retrieved11 February2012.
  225. ^CCP porkbelly (24 August 2010)."Stackless Python 2.7".EVE Community Dev Blogs.CCP Games.Archivedfrom the original on 11 January 2014.Retrieved11 January2014.As you may know, EVE has at its core the programming language known as Stackless Python.
  226. ^Caudill, Barry (20 September 2005)."Modding Sid Meier's Civilization IV".Sid Meier's Civilization IV Developer Blog.Firaxis Games.Archived fromthe originalon 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.
  227. ^"Python Language Guide (v1.0)".Google Documents List Data API v1.0.Archived fromthe originalon 15 July 2010.
  228. ^"Python Setup and Usage".Python Software Foundation.Archivedfrom the original on 17 June 2020.Retrieved10 January2020.
  229. ^"Immunity: Knowing You're Secure".Archived fromthe originalon 16 February 2009.
  230. ^"Core Security".Core Security.Archivedfrom the original on 9 June 2020.Retrieved10 April2020.
  231. ^"What is Sugar?".Sugar Labs.Archivedfrom the original on 9 January 2009.Retrieved11 February2012.
  232. ^"4.0 New Features and Fixes".LibreOffice.org.The Document Foundation.2013.Archivedfrom the original on 9 February 2014.Retrieved25 February2013.
  233. ^"Gotchas for Python Users".boo.codehaus.org.Codehaus Foundation. Archived fromthe originalon 11 December 2008.Retrieved24 November2008.
  234. ^Esterbrook, Charles."Acknowledgements".cobra-language.com.Cobra Language.Archivedfrom the original on 8 February 2008.Retrieved7 April2010.
  235. ^"Proposals: iterators and generators [ES4 Wiki]".wiki.ecmascript.org. Archived fromthe originalon 20 October 2007.Retrieved24 November2008.
  236. ^"Frequently asked questions".Godot Engine documentation.Archivedfrom the original on 28 April 2021.Retrieved10 May2021.
  237. ^Kincaid, Jason (10 November 2009)."Google's Go: A New Programming Language That's Python Meets C++".TechCrunch.Archivedfrom the original on 18 January 2010.Retrieved29 January2010.
  238. ^Strachan, James (29 August 2003)."Groovy – the birth of a new dynamic language for the Java platform".Archived fromthe originalon 5 April 2007.Retrieved11 June2007.
  239. ^"Modular Docs - Why Mojo".docs.modular.com.Archivedfrom the original on 5 May 2023.Retrieved5 May2023.Mojo as a member of the Python family [..] Embracing Python massively simplifies our design efforts, because most of the syntax is already specified. [..] we decided that the right long-term goal for Mojo is to provide a superset of Python (i.e. be compatible with existing programs) and to embrace the CPython immediately for long-tail ecosystem enablement. To a Python programmer, we expect and hope that Mojo will be immediately familiar, while also providing new tools for developing systems-level code that enable you to do things that Python falls back to C and C++ for.
  240. ^Spencer, Michael (4 May 2023)."What is Mojo Programming Language?".datasciencelearningcenter.substack.com.Archivedfrom the original on 5 May 2023.Retrieved5 May2023.
  241. ^Yegulalp, Serdar (16 January 2017)."Nim language draws from best of Python, Rust, Go, and Lisp".InfoWorld.Archivedfrom the original on 13 October 2018.Retrieved7 June2020.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).
  242. ^"An Interview with the Creator of Ruby".Linuxdevcenter.com.Archivedfrom the original on 28 April 2018.Retrieved3 December2012.
  243. ^Lattner, Chris(3 June 2014)."Chris Lattner's Homepage".Chris Lattner.Archivedfrom the original on 22 December 2015.Retrieved3 June2014.I started work on the Swift Programming Language in July of 2010. I implemented much of the basic language structure, with only a few people knowing of its existence. A few other (amazing) people started contributing in earnest late in 2011, and it became a major focus for the Apple Developer Tools group in July 2013 [...] drawing ideas from Objective-C, Rust, Haskell, Ruby, Python, C#, CLU, and far too many others to list.
  244. ^Jalan, Nishant Aanjaney (10 November 2022)."Programming in Kotlin".CodeX.Retrieved29 April2024.
  245. ^Kupries, Andreas; Fellows, Donal K. (14 September 2000)."TIP #3: TIP Format".tcl.tk.Tcl Developer Xchange.Archivedfrom the original on 13 July 2017.Retrieved24 November2008.
  246. ^Gustafsson, Per; Niskanen, Raimo (29 January 2007)."EEP 1: EEP Purpose and Guidelines".erlang.org.Archivedfrom the original on 15 June 2020.Retrieved19 April2011.
  247. ^"Swift Evolution Process".Swift Programming Language Evolution repository on GitHub.18 February 2020.Archivedfrom the original on 27 April 2020.Retrieved27 April2020.

Sources[edit]

Further reading[edit]

External links[edit]