Home > Article > Backend Development > What is Python programming IDE?
IDE is a python integrated development environment and a tool for writing python code. Commonly used IDEs include "pycharm", "sublim text", "vim", "Eclipse with PyDev", "Komodo Edit" and so on.
Python IDE, also called integrated development environment, is used to write python programs. Python itself comes with an IDE. Today I recommend two useful python IDEs, pycharm and sublime text
The IDE that comes with Python is as shown below
Let’s talk about pycharm and sublime text
pycharm
##PyCharm is a Python created by JetBrains IDE. PyCharm has the functions of general Python IDE, such as: debugging, syntax highlighting, project management, code jump, smart prompts, auto-completion, unit testing, version control, etc. In addition, PyCharm also provides some great features for Django development and supports Google App Engine. What’s even cooler is that PyCharm supports IronPython. PyCharm official download address: http://www.jetbrains.com/pycharm/download/Rendering view:sublime text
Sublime Text has a beautiful user interface and powerful features such as code thumbnails, Python Plug-ins, code snippets, etc. Key bindings, menus and toolbars can also be customized. Sublime Text’s main features include: spell check, bookmarks, complete Python API, Goto function, instant project switching, multi-selection, multi-window and more. Sublime Text is a cross-platform editor that also supports Windows, Linux, Mac OS X and other operating systems. Rendering:
The above is the detailed content of What is Python programming IDE?. For more information, please follow other related articles on the PHP Chinese website!