Version 58 of Python

Updated 2011-04-17 05:08:03 by RLE

http://www.python.org/doc/Summary.html is the canonical page to address the question, "What is Python?"

Frequent Wiki contributor CL also covers Python often [L1 ].


 What: Python
 Where: http://www.python.org/
 Description: Object oriented scripting language which has a [Tk] module
        called Tkinter. Beginning at version v1.5.2, includes [IDLE], an
        integrated development environment for Python that requires [Tkinter].
        Python 2.4 not only supports [Tk] on [Unix],
        but Tk on Windows and Macintosh platforms as well.
        The PythonWare site has an intro to Tkinter,
         as well as the binaries for win32 on its downloads page.
        The [ActiveState] site has binary distributions for Linux,
         Solaris and Windows.
        Currently at version 3.1.2
 Updated: 2010-03-21
 Contact: mailto:[email protected] (Guido van Rossum)
        mailto:[email protected] (Fredrik Lundh)

escargo 17 Feb 2003 - For competition to using Tkinter, see the IBM DeveloperWorks page on PyQt[L2 ].


"Typcl [L3 ] ... [i]s an extension to use Tcl from Python."

Elmer goes the other way. Elmer allows developers to write code in Python and execute it in Tcl. The resulting Tcl interface to the Python code generated by Elmer is transparent to the Tcl user... Python calls appear as Tcl calls ( "foo( 1, "a" )" in Python appears as "foo 1 a" in Tcl, for example) and Python and Tcl data types are automatically mapped (Tcl lists are converted to Python lists, Python dictionaries are returned as Tcl associative arrays, etc.). Elmer also supports Python's "freeze" module, allowing a Python developer to deliver a single library consisting of several Python files "frozen" in to the Tcl application... no need to set PYTHONPATH or have Python source files accompanying the Tcl application.


Bruce Gingery mailto:[email protected] has an article that compares Tcl/Tk, Perl/Tk, and Python/Tk to early 1980's BASIC using a simple example[L4 ]

Frank Stajano's paper at the 1998 Python conference [L5 ] had some useful insights into why he thinks Python's extensions are evolving faster and are easier to work with than Tcl's [L6 ].

A paper on embedding Tcl, Perl or Python can be found at [L7 ].

Technical report evaluating the properties of 80 different implementations of the same program in 7 different programming langauges (C, C++, Java, Perl, Python, Rexx, and Tcl). See [L8 ]
Erann Gat did a study of Lisp on the same problem. You can find his work at [L9 ] and you can see another Lisp solution at [L10 ]


QuickStudy: Python

Python is an object-oriented, open-source programming language often used for rapid application development. Python's simple syntax emphasizes readability, reducing the cost of program maintenance, while its large library of functions and calls encourages reuse and extensibility. [L11 ]

-- Sidebar: Follow The Script

Python is useful as a scripting language that glues together pieces from lots of programs. [L12 ]

-- Sidebar: Zope Spurs Python Growth

The popularity of Zope (Z Object Publishing Environment), an open-source Web application server and portal tool kit written in Python, has increased interest in the programming language. [L13 ]


Sarnold 2006/01/06

Microsoft is interested in Python : they are implementing a new Python engine for .Net called IronPython [L14 ].

RLH 2007/03/03 : Microsoft has also recently announced they are watching Ruby with interest.

http://www.pythonware.com/products/pil/


AMG: Does anyone have Tcl code to read Python pickle [L15 ] data? Tcl pickle, heh. Maybe someday I might develop it, if no one else has already done so.


See also: