Python (programming language)

From Conservapedia
Jump to: navigation, search

Python redirects here. For other uses, see Python (disambiguation)

Python logo

Python is a high-level programming language created by Guido van Rossum in 1991. It is a multi-paradigm language with a fully dynamic type system and automatic garbage collection.

Python 2.7 reached its official end-of-life at the end of 2019. Almost all software is using the 3.x branch now.[1]

The most popular implementation of Python is the CPython implementation maintained by the Python Software Foundation. Currently developed under an open source model and licensed under its own Python Software Foundation License, CPython is a byte-code interpreter that comes with a rich library that includes modules for creating graphical user interface, relational database, arbitrary precision arithmetic, complex arithmetic, unit testing, regular expression, XML parsing, C/C++ interfacing and zip compression; combined, these features makes it a powerful glue language between lower-level machine languages and higher level languages and programs.[2] In addition to the built-in libraries, python is extended by a multitude of third party packages, many of which are open source that provide features not available in the python proper. For example, the twin packages scipy[3] and numpy[4] extend python with a large collection of functions for scientific work and numerical analysis giving python powered applications access to optimized algorithms and high level math functions that rivals that of leading proprietary software packages like Mathematica and Matlab. Other third party packages allow programmers to write fully featured GUI[5] and 3D[6] applications.

Other popular Python implementations include Jython, written in Java, and IronPython, for Microsoft's .NET framework.

Hello World

An example program often used for languages is something that displays "Hello, World!".

print('Hello, World!')

See also

References

  1. Moving to require Python 3.
  2. About Python. Python Software Foundation.
  3. Scipy. Enthought.
  4. Numpy. Enthought.
  5. PyQt.
  6. Panda3D.