Home  >  Article  >  Backend Development  >  What are the integrated development tools built into Python?

What are the integrated development tools built into Python?

angryTom
angryTomOriginal
2020-02-29 14:22:1727898browse

Python’s own integrated development tool is IDLE. It is the native development environment of Python. The functions of IDLE are no better than those of some professional IDEs. However, Python, as a powerful and concise language, is often used for small-scale programming. In this case, using IDLE is a convenient choice.

What are the integrated development tools built into Python?

The operating environment of this tutorial: windows7 system, Dell G3 computer, Python3.

Python’s own integrated development tool is IDLE.

#Python is just a language, and Python has a native development environment-IDLE. The functions of IDLE are not as good as those of some professional IDEs, but Python, as a powerful and concise language, is often used for small-scale programming. At this time, using IDLE is a convenient choice.

IDLE interface

What are the integrated development tools built into Python?

IDLE introduction

IDLE is a tool for developing python The program's basic IDE (integrated development environment) has basic IDE functions and is a good choice for non-commercial Python development. After installing python, IDLE will be installed automatically and there is no need to find it separately. At the same time, it is also very convenient to debug Python programs using IDLE, a powerful framework of Eclipse. Basic functions: syntax highlighting; paragraph indentation; basic text editing; TABLE key control; debugging programs.

Idle is generally a standard Python distribution, even written by Guido van Rossum himself (at least initially most of it). You can run Idle in any environment that can run Python and TK. After opening Idle, an enhanced interactive command interpreter window appears (with better cut-paste, line wrap, etc. functions than the basic interactive command prompt). In addition to this, there is an editor for Python (no code merging, but syntax tag highlighting and code auto-completion), class browser and debugger. Menus are TK "stripped"; that is, clicking the dotted line on any drop-down menu at the top will elevate that menu into its own permanent window. Especially the "Edit" menu, it is very practical to "lean" it in the corner of the desktop. Idle's debugger provides breakpoints, stepping, and variable monitoring functions; but it is not as good as its ability to store memory addresses and variable contents or perform synchronization and other analysis functions.

——From Baidu Encyclopedia

Many python video tutorials, all on the PHP Chinese website, welcome to learn online!

The above is the detailed content of What are the integrated development tools built into Python?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn