(The following is an excerpt from Baidu Encyclopedia)Idle is the basic IDE for developing Python programs (integrated development environment) with basic IDE functionality and a good choice for non-commercial python development. When the Python is installed, the idle is automatically installed, no need to find another. At the same time, using the powerful framework of eclipse, Idle can also be very handy for debugging Python programs. Basic functions: syntax highlighting, paragraph indentation, basic text editing, table key control, debugger.
Idle is generally the standard Python release, even written by Guido van Rossum (at least for the first most part). You can run Idle in any environment that can run Python and TK. An enhanced interactive command-line interpreter window appears after opening Idle (features such as cut-paste, back-line, etc.) that are better than the basic interactive command prompt. In addition, there is an editor for Python (no code merge, but syntax tag highlighting and code AutoComplete), class browser, and debugger. The menu is the TK "Peel" style, which means that clicking on the dotted line at the top of any drop-down menu will elevate the menu to its own permanent window. Especially the "Edit" menu, it is very useful to "rely on" the corner of the desktop. The Idle debugger provides breakpoints, stepping, and variable monitoring capabilities, but does not have the memory address and variable content count or synchronization and other analysis capabilities.
(Self-understanding)To be blunt, idle is a tool (GUI) that edits, runs, browses, and debugs python, and he uses the Python program developed by the Thinter GUI Toolkit to run on almost any Python platform. For many people, Idle is an easy-to-use alternative to command-line input.
This is the section here, thank you.
------------------------------------------------------------------
Click to jump 0 basic python-Catalogue
Copyright NOTICE: This article for Bo Master original article, without Bo Master permission not reproduced.
0 Fundamentals python-1.2 What is idle