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 [http://www.phaseit.net/claird/comp.lang.python/python.html]. ---- 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. Python 2.7.2 was released on June 11th, 2011. Python 3.2.2 was released on September 4th, 2011 Updated: 2011-09-04 Contact: mailto:guido@CNRI.Reston.VA.US (Guido van Rossum) mailto:fredrik.lundh@image.combitech.se (Fredrik Lundh) ---- ''[escargo] 17 Feb 2003'' - For competition to using [Tkinter], see the IBM DeveloperWorks page on PyQt[http://www-106.ibm.com/developerworks/linux/library/l-qt/?ca=dgr-linuxw02QTPyQT]. ----- "Typcl [http://www.equi4.com/critlib/typcl.README] ... [[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:bgingery@gtcs.com has an article that compares Tcl/Tk, Perl/Tk, and Python/Tk to early 1980's BASIC using a simple example[http://tcltk.gtcs.com/articles/BASIC_today/] [Frank Stajano]'s paper at the 1998 Python conference [http://www-lce.eng.cam.ac.uk/~fms27/ipc7/] had some useful insights into why he thinks Python's extensions are evolving faster and are easier to work with than Tcl's [http://www-lce.eng.cam.ac.uk/~fms27/papers/tr-1998-9.pdf]. A paper on embedding Tcl, Perl or Python can be found at [http://www.morrisland.com/~mitchell/]. 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 [http://wwwipd.ira.uka.de/~prechelt/Biblio/#jccpprtTR] <
> Erann Gat did a study of [Lisp] on the same problem. You can find his work at [http://www-aig.jpl.nasa.gov/public/home/gat/lisp-study.html] and you can see another [Lisp] solution at [http://www.norvig.com/java-lisp.html] ---- 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. [http://www.computerworld.com/newsletter/0,4902,101390,00.html?nlid=APP] -- Sidebar: Follow The Script Python is useful as a scripting language that glues together pieces from lots of programs. [http://www.computerworld.com/newsletter/0,4902,101392,00.html?nlid=APP] -- 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. [http://www.computerworld.com/newsletter/0,4902,101372,00.html?nlid=APP] ---- [Sarnold] 2006/01/06 Microsoft is interested in Python : they are implementing a new Python engine for .Net called IronPython [http://www.codeplex.com/Wiki/View.aspx?ProjectName=IronPython]. [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 [http://docs.python.org/library/pickle.html] data? Tcl pickle, heh. Maybe someday I might develop it, if no one else has already done so. ---- See also: * [IDLE] * [Tkinter] * news:comp.lang.python - a [USENET] interface to the Python mailing list * Books on Python [http://www.python.org/moin/PythonBooks] * [Comparing Tcl with Python] * [Accessing Tcl and Python from one another] * [Tcl vs Perl vs Python] * [Playing Python] * "Thinking in tkinter" [http://www.ferg.org/thinking_in_tkinter/index.html] * "Tkinter summary" [http://www.astro.washington.edu/users/rowen/TkinterSummary.html] * 'Python Enthought Edition' with lots of additional packages [http://code.enthought.com/enthon] * AVC [http://avc.inrim.it/] Application View Controller <> Language | Object Orientation