Difference between revisions of "Python"

From Wikicliki
Jump to: navigation, search
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
Python is named after Monty Python. Its faster to code but may run ever so slightly slower than C++ so you can use python for EVERYTHING except where maximum speed is the key issue. python can be used to build everything you ever imagined! it is also simpler and faster to develop. Your original source code (py) is compiled to byte code (pyc) then it can be executed by PVM (python virtual machine).
 +
 +
CPython is the standard python compiled in C, [[Jython]] implements Python for Java, [[IronPython]] implements Python for .NET environments. These are just alternative compilers. As for variations in execution there's things like [[Psyco]], [[Shedskin]], and frozen binaries.
 +
 +
Download it here: http://www.python.org/download/
 +
 
== Learning Resources ==
 
== Learning Resources ==
  
Line 9: Line 15:
 
* http://www.python.org/
 
* http://www.python.org/
 
* http://pygame.org/wiki/about
 
* http://pygame.org/wiki/about
 +
* [[NLTK]]
 +
 +
[[Category:Programming]]

Latest revision as of 03:45, 17 July 2011

Python is named after Monty Python. Its faster to code but may run ever so slightly slower than C++ so you can use python for EVERYTHING except where maximum speed is the key issue. python can be used to build everything you ever imagined! it is also simpler and faster to develop. Your original source code (py) is compiled to byte code (pyc) then it can be executed by PVM (python virtual machine).

CPython is the standard python compiled in C, Jython implements Python for Java, IronPython implements Python for .NET environments. These are just alternative compilers. As for variations in execution there's things like Psyco, Shedskin, and frozen binaries.

Download it here: http://www.python.org/download/

Learning Resources

See also