Difference between revisions of "Python (programming language)"

From Conservapedia
Jump to navigation Jump to search
m (→‎Hello World: fix capitalization)
m (clean up)
Line 3: Line 3:
 
'''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''' 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.
  
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. <ref> {{cite web|url=http://python.org/about/ | title= About Python | work=Python Software Foundation }}</ref>. 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<ref>{{cite web|url = http://www.scipy.org/ | title = Scipy | work = Enthought}}</ref> and numpy<ref>{{cite web|url=http://numpy.scipy.org/ |title = Numpy|work=Enthought}}</ref> 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]]<ref>{{cite web| url=http://www.riverbankcomputing.co.uk/software/pyqt/intro| title = PyQt}}</ref> and 3D<ref>{{cite web| url=http://www.panda3d.org/| title = Panda3D}}</ref> applications.
+
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.<ref>{{cite web|url=http://python.org/about/ | title= About Python | work=Python Software Foundation }}</ref> 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<ref>{{cite web|url = http://www.scipy.org/ | title = Scipy | work = Enthought}}</ref> and numpy<ref>{{cite web|url=http://numpy.scipy.org/ |title = Numpy|work=Enthought}}</ref> 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]]<ref>{{cite web| url=http://www.riverbankcomputing.co.uk/software/pyqt/intro| title = PyQt}}</ref> and 3D<ref>{{cite web| url=http://www.panda3d.org/| title = Panda3D}}</ref> applications.
  
 
Other popular Python implementations include [[Jython]], written in [[Java]], and [[IronPython]], for [[Microsoft]]'s [[.Net framework|.NET framework]].
 
Other popular Python implementations include [[Jython]], written in [[Java]], and [[IronPython]], for [[Microsoft]]'s [[.Net framework|.NET framework]].
Line 11: Line 11:
 
  print 'Hello, World!'
 
  print 'Hello, World!'
  
==See Also==
+
==See also==
 
*[http://www.python.org/ Python Software Foundation]
 
*[http://www.python.org/ Python Software Foundation]
 
*[http://www.codeplex.com/Wiki/View.aspx?ProjectName=IronPython IronPython]
 
*[http://www.codeplex.com/Wiki/View.aspx?ProjectName=IronPython IronPython]

Revision as of 15:01, June 23, 2016

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.

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.[1] 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[2] and numpy[3] 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[4] and 3D[5] 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. About Python. Python Software Foundation.
  2. Scipy. Enthought.
  3. Numpy. Enthought.
  4. PyQt.
  5. Panda3D.