Difference between revisions of "Python"

From Christoph's Personal Wiki
Jump to: navigation, search
(External links)
(External links)
Line 31: Line 31:
 
*[http://www.rosettacode.org/wiki/Main_Page Rosetta Code]
 
*[http://www.rosettacode.org/wiki/Main_Page Rosetta Code]
 
*[http://www.perlmonks.org/?node_id=632023 Yet Another Rosetta Code Problem (Perl, Ruby, Python, Haskell, ...)]
 
*[http://www.perlmonks.org/?node_id=632023 Yet Another Rosetta Code Problem (Perl, Ruby, Python, Haskell, ...)]
 +
*[http://rgruet.free.fr/PQR25/PQR2.5.html Python 2.5 Quick Reference]
 +
*[http://swaroopch.info/text/Byte_of_Python:Main_Page Byte of Python]
 
*[[wikipedia:python]]
 
*[[wikipedia:python]]
  
 
[[Category:Scripting languages]]
 
[[Category:Scripting languages]]

Revision as of 01:06, 6 October 2007

Python is an interpreted programming language created by Guido van Rossum in 1990. Python is fully dynamically typed and uses automatic memory management; it is thus similar to Perl, Ruby, Scheme, Smalltalk, and Tcl. Python is developed as an open source project, managed by the non-profit Python Software Foundation.

  • Python 2.4.4 was released on 18 October 2006.
  • Python 2.4.2 was released on 28 September 2005.

Properties

  • Python is strongly typed (i.e. types are enforced);
  • dynamically, implicitly typed (i.e. you don't have to declare variables);
  • case sensitive (i.e. var and VAR are two different variables); and
  • object-oriented (i.e. everything is an object).

Reserved words (native to Python)

and		elif		global		or
assert		else		if		pass
break		except		import		print
class		exec		in		raise
continue	finally		is		return
def		for		lambda		try
del		from		not		while

External links