Difference between revisions of "Python"

From RogueBasin
Jump to navigation Jump to search
Line 8: Line 8:
== Realted links ==
== Realted links ==
* [http://python.org Official Python website]
* [http://python.org Official Python website]
* [http://adamv.com/dev/python/curses/ WCurses], a Python module implementing a substantial subset of the Curses interface under Windows.  Python includes Curses support by default for other OS's.
* [http://adamv.com/dev/python/curses/ WCurses], a Python module implementing a substantial subset of the [[Curses]] interface under Windows.  Python includes Curses support by default for other OS's.
* [http://psyco.sourceforge.net/ Psyco], the specializing compiler for Python.  Improves performance 2 to 100 times (usually about 4 times), and requires little more from the programmer than to import the module.
* [http://psyco.sourceforge.net/ Psyco], the specializing compiler for Python.  Improves performance 2 to 100 times (usually about 4 times), and requires little more from the programmer than to import the module.
* [http://www.py2exe.org/ py2exe] is a package which converts Python scripts into executable Windows programs, able to run without requiring a Python installation.  Since most Windows users will not have Python installed, py2exe is a good way to distribute your Python game to that audience.
* [http://www.py2exe.org/ py2exe] is a package which converts Python scripts into executable Windows programs, able to run without requiring a Python installation.  Since most Windows users will not have Python installed, py2exe is a good way to distribute your Python game to that audience.


[[Category:Programming languages]]
[[Category:Programming languages]]

Revision as of 15:04, 7 December 2006

What is Python

Python is an interpreted, interactive, object-oriented programming language. It incorporates modules, exceptions, dynamic typing, very high level dynamic data types, and classes. Python combines remarkable power with very clear syntax. It has interfaces to many system calls and libraries, as well as to various window systems, and is extensible in C or C++. It is also usable as an extension language for applications that need a programmable interface. Finally, Python is portable: it runs on many Unix variants, on the Mac, and on PCs under MS-DOS, Windows, Windows NT, and OS/2.

Taken from the official Python FAQ.


Realted links

  • Official Python website
  • WCurses, a Python module implementing a substantial subset of the Curses interface under Windows. Python includes Curses support by default for other OS's.
  • Psyco, the specializing compiler for Python. Improves performance 2 to 100 times (usually about 4 times), and requires little more from the programmer than to import the module.
  • py2exe is a package which converts Python scripts into executable Windows programs, able to run without requiring a Python installation. Since most Windows users will not have Python installed, py2exe is a good way to distribute your Python game to that audience.