Difference between revisions of "Python (programming language)"

From Conservapedia
Jump to navigation Jump to search
(Nevermind that; makes more sense just to make programming languages a subcat of computer programming)
Line 9: Line 9:
  
 
'''Python''' was also a mythological creature slain by [[Apollo (mythology)|Apollo]].
 
'''Python''' was also a mythological creature slain by [[Apollo (mythology)|Apollo]].
 +
 +
== Hello World ==
 +
 +
print 'hello world'
 +
 
==See Also==
 
==See Also==
 
*[http://www.python.org/ Python Software Foundation]
 
*[http://www.python.org/ Python Software Foundation]

Revision as of 23:03, May 13, 2009

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 memory management. Its syntax is similar to that of Perl and Smalltalk.

The most popular implementation of Python is the CPython maintained by the Python Software Foundation, developing under an open source development model, and is licensed under its own Python Software Foundation License. CPython is a bytecode interpreter and comes with a rich library that includes modules for creating graphical user interface, relational database, arbitrary precision arithematic, complex arithematic, unit testing, regular expression, XML parsing, C/C++ interfacing and zip compression; which makes it a powerful glue language between lower-level languages and software programs.

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

Python is also a type of snake.

Python was also a mythological creature slain by Apollo.

Hello World

print 'hello world'

See Also