Where we need to use Python ?
Terry Reedy
tjreedy at udel.edu
Mon Aug 20 09:22:28 EDT 2007
<gperumal at gmail.com> wrote in message
news:1187596936.136499.200280 at l22g2000prc.googlegroups.com...
| And Is it a interpreted language or a programming language
| It comes in which category
Python is an algorithm programming language.
The CPython implementation of the langauge compiles Python to proprietary
byte code and then interprets the byte code.
The Jython implementation compiles to javacode which is then handled
however by a Java runtime.
The IronPython implementation compiles to the .NET language handled by the
.NET runtime.
The PyPy implementation acts similarly to CPython, I believe, but can also
compile a subset of the language to C or other low level languages that can
be compiled to object code. There are other projects that compile subsets,
possible with additional instructions to the compiler.
Do visit www.python.org and take a look around. The documentation section
has a tutorial that will give an experienced programmer a good overview in
just a few hours.
tjr
More information about the Python-list
mailing list