Difference between revisions of "Python (programming language)"

From Conservapedia
Jump to navigation Jump to search
(Replaced content with 'Page Corrected By Anon')
m (Reverted edits by Mlask (Talk) to last version by Tzoran)
Line 1: Line 1:
Page Corrected By Anon
+
<small>Python redirects here. For other uses, see [[Python (disambiguation)]]</small>
 +
[[Image:Python-logo.gif|right|thumb|Python logo|400px]]
 +
'''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.
 +
 
 +
Other popular Python implementations include [[Jython]], written in [[Java]], and [[IronPython]], for [[Microsoft]]'s [[.Net framework|.NET framework]].
 +
 
 +
== Hello World ==
 +
 
 +
print 'hello world'
 +
 
 +
==See Also==
 +
*[http://www.python.org/ Python Software Foundation]
 +
*[http://www.codeplex.com/Wiki/View.aspx?ProjectName=IronPython IronPython]
 +
 
 +
[[Category:Computers]]
 +
[[Category:Computer Programming]]
 +
[[Category:Computer Science]]
 +
[[Category:Programming Languages]]
 +
[[Category:Scripting Languages]]

Revision as of 17:25, January 24, 2010

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.

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

Hello World

print 'hello world'

See Also